* Urgh, this is why duplication is bad...
svn path=/nixpkgs/trunk/; revision=14493
This commit is contained in:
parent
6529b6d14f
commit
f81bbde9d2
@ -4,7 +4,7 @@ let
|
||||
|
||||
pkgs = allPackages {};
|
||||
|
||||
testOn = systems: f: {system}:
|
||||
testOn = systems: f: {system ? builtins.currentSystem}:
|
||||
if pkgs.lib.elem system systems then f (allPackages {inherit system;}) else {};
|
||||
|
||||
testOnLinux = testOn ["i686-linux" "x86_64-linux"];
|
||||
@ -55,7 +55,7 @@ in {
|
||||
kdeedu = testOnLinux (pkgs: pkgs.kde42.kdeedu);
|
||||
kdegames = testOnLinux (pkgs: pkgs.kde42.kdegames);
|
||||
kdegraphics = testOnLinux (pkgs: pkgs.kde42.kdegraphics);
|
||||
kdelibs = testOnLinux (pkgs: pkgs.kde42.kdebase);
|
||||
kdelibs = testOnLinux (pkgs: pkgs.kde42.kdelibs);
|
||||
kdemultimedia = testOnLinux (pkgs: pkgs.kde42.kdemultimedia);
|
||||
kdenetwork = testOnLinux (pkgs: pkgs.kde42.kdenetwork);
|
||||
kdepim = testOnLinux (pkgs: pkgs.kde42.kdepim);
|
||||
|
Loading…
Reference in New Issue
Block a user