diff options
Diffstat (limited to 'forstio/core/.nix')
-rw-r--r-- | forstio/core/.nix/derivation.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/forstio/core/.nix/derivation.nix b/forstio/core/.nix/derivation.nix new file mode 100644 index 0000000..a3b7ef1 --- /dev/null +++ b/forstio/core/.nix/derivation.nix @@ -0,0 +1,25 @@ +{ lib +, stdenvNoCC +, scons +, clang +, clang-tools +}: + +let + +in stdenvNoCC.mkDerivation { + pname = "forstio-core"; + version = "0.0.0"; + + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang + clang-tools + ]; + + outputs = ["out" "dev"]; +} |