krebs/5pkgs: move test stuff to a subdir

This commit is contained in:
tv 2017-05-24 02:12:02 +02:00
parent e6b7fe74c1
commit 9874109230
2 changed files with 10 additions and 4 deletions

View File

@ -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 {};
};
}

View File

@ -0,0 +1,9 @@
with import <stockholm/lib>;
self: super:
{
test = {
infest-cac-centos7 = self.callPackage ./infest-cac-centos7 {};
};
}