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