summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--krebs/5pkgs/default.nix5
-rw-r--r--krebs/5pkgs/test/default.nix9
2 files changed, 10 insertions, 4 deletions
diff --git a/krebs/5pkgs/default.nix b/krebs/5pkgs/default.nix
index ea14e02a..6dbb0954 100644
--- a/krebs/5pkgs/default.nix
+++ b/krebs/5pkgs/default.nix
@@ -3,6 +3,7 @@ with import <stockholm/lib>;
{}
// import ./haskell pkgs oldpkgs
// import ./simple pkgs oldpkgs
+ // import ./test pkgs oldpkgs
// import ./writers.nix pkgs oldpkgs
// {
ReaktorPlugins = pkgs.callPackage ./simple/Reaktor/plugins.nix {};
@@ -22,8 +23,4 @@ with import <stockholm/lib>;
symlinkJoin = { name, paths, ... }@args: let
x = oldpkgs.symlinkJoin args;
in if typeOf x != "lambda" then x else oldpkgs.symlinkJoin name paths;
-
- test = {
- infest-cac-centos7 = pkgs.callPackage ./test/infest-cac-centos7 {};
- };
}
diff --git a/krebs/5pkgs/test/default.nix b/krebs/5pkgs/test/default.nix
new file mode 100644
index 00000000..5ee8f913
--- /dev/null
+++ b/krebs/5pkgs/test/default.nix
@@ -0,0 +1,9 @@
+with import <stockholm/lib>;
+
+self: super:
+
+{
+ test = {
+ infest-cac-centos7 = self.callPackage ./infest-cac-centos7 {};
+ };
+}