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