diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 13:45:37 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 13:45:37 +0100 |
commit | 8da0229a7e172a86c023edc6bb25ba803c68f5d3 (patch) | |
tree | c305cf094528b70ae99af79a9a650f9dc98fc0b9 /modules/test/.nix | |
parent | fb7ed24d557c9f9ac5eaa60dbf22cba509953c1a (diff) |
core, tests: Moving core tests to core module
Diffstat (limited to 'modules/test/.nix')
-rw-r--r-- | modules/test/.nix/derivation.nix | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/test/.nix/derivation.nix b/modules/test/.nix/derivation.nix deleted file mode 100644 index c15421d..0000000 --- a/modules/test/.nix/derivation.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ lib -, stdenv -, scons -, clang-tools -, version -, forstio -}: - -let - -in stdenv.mkDerivation { - pname = "forstio-test"; - inherit version; - src = ./..; - - enableParallelBuilding = true; - - nativeBuildInputs = [ - scons - clang-tools - ]; - - buildInputs = [ - forstio.core - ]; - - outputs = ["out" "dev"]; -} |