diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-03 20:34:02 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-03 20:34:02 +0200 |
commit | 2aa2af0007b7e969845642027c635cd3fd9c8aea (patch) | |
tree | e72a05a3c2bfe58442b160c0c8e98ce1d095f36f /forstio/core/.nix | |
parent | 9b81a2585142260f89d47cbe1e592cec9e1f778f (diff) |
Moved dirs and added codec-json dir
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"]; -} |