2008-11-28 11:56:36 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
allPackages = import ./all-packages.nix;
|
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
pkgs = allPackages {};
|
2008-11-30 19:36:23 +01:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
testOn = systems: f: {system}:
|
|
|
|
if pkgs.lib.elem system systems then f (allPackages {inherit system;}) else {};
|
|
|
|
|
|
|
|
testOnLinux = testOn ["i686-linux" "x86_64-linux"];
|
2008-11-30 19:36:23 +01:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
test = testOn ["i686-linux" "x86_64-linux" "i686-darwin" "i686-cygwin"];
|
2008-11-30 19:36:23 +01:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
in {
|
2008-11-30 19:36:23 +01:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
tarball = import ./make-tarball.nix;
|
2008-11-30 19:36:23 +01:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
/* All the top-level packages that we want to build in the build
|
|
|
|
farm. The notation is still kinda clumsy. We could use some
|
|
|
|
meta-programming. E.g. we would want to write
|
|
|
|
|
|
|
|
wine = ["i686-linux"];
|
|
|
|
|
|
|
|
which would be translated to
|
|
|
|
|
|
|
|
wine = testOn ["i686-linux"] (pkgs: pkgs.wine);
|
|
|
|
|
|
|
|
Shouldn't be too hard to make a function that recurses over the
|
|
|
|
attrset and does this for every attribute. */
|
|
|
|
|
|
|
|
MPlayer = testOnLinux (pkgs: pkgs.MPlayer);
|
|
|
|
autoconf = test (pkgs: pkgs.autoconf);
|
|
|
|
bash = test (pkgs: pkgs.bash);
|
|
|
|
firefox3 = testOnLinux (pkgs: pkgs.firefox3);
|
|
|
|
gcc = test (pkgs: pkgs.gcc);
|
|
|
|
hello = test (pkgs: pkgs.hello);
|
|
|
|
libsmbios = testOnLinux (pkgs: pkgs.libsmbios);
|
|
|
|
libtool = test (pkgs: pkgs.libtool);
|
|
|
|
pan = testOnLinux (pkgs: pkgs.pan);
|
|
|
|
perl = test (pkgs: pkgs.perl);
|
|
|
|
python = test (pkgs: pkgs.python);
|
|
|
|
thunderbird = testOnLinux (pkgs: pkgs.thunderbird);
|
|
|
|
wine = testOn ["i686-linux"] (pkgs: pkgs.wine);
|
|
|
|
|
|
|
|
xorg = {
|
|
|
|
libX11 = testOnLinux (pkgs: pkgs.xorg.libX11);
|
2008-11-28 11:56:36 +01:00
|
|
|
};
|
2009-03-09 18:49:13 +01:00
|
|
|
|
|
|
|
}
|