coriolis/nix/bootstrap.nix

17 lines
285 B
Nix
Raw Normal View History

2021-08-22 05:54:22 -05:00
{ version, meta }:
2021-10-26 16:10:09 -05:00
{ lib, stdenv, python3, cmake, ninja }:
2021-08-22 05:54:22 -05:00
stdenv.mkDerivation {
pname = "coriolis-bootstrap";
src = ../bootstrap;
2021-10-26 16:10:09 -05:00
buildInputs = [ python3 ];
2021-08-22 05:54:22 -05:00
nativeBuildInputs = [ cmake ninja ];
2021-10-06 11:07:46 -05:00
inherit version;
meta = meta // { license = lib.licenses.gpl2Plus; };
2021-08-22 05:54:22 -05:00
}