* Test building some random packages.

svn path=/nixpkgs/trunk/; revision=13525
This commit is contained in:
Eelco Dolstra 2008-11-30 19:07:18 +00:00
parent c058ff0e40
commit 18501e572a

View File

@ -2,6 +2,9 @@ let
allPackages = import ./all-packages.nix; allPackages = import ./all-packages.nix;
test = f: {system}: f (allPackages {inherit system;});
jobs = { jobs = {
@ -79,12 +82,19 @@ let
}; };
inherit (allPackages {system = "i686-linux";}) # All the top-level packages that want to build in the build farm.
bash # !!! notation is kinda clumsy
gcc
; MPlayer = test (pkgs: pkgs.MPlayer);
hello = {system}: (allPackages {inherit system;}).hello; autoconf = test (pkgs: pkgs.autoconf);
pan = {system}: (allPackages {inherit system;}).pan; bash = test (pkgs: pkgs.bash);
firefox3 = test (pkgs: pkgs.firefox3);
gcc = test (pkgs: pkgs.gcc);
hello = test (pkgs: pkgs.hello);
libtool = test (pkgs: pkgs.libtool);
pan = test (pkgs: pkgs.pan);
perl = test (pkgs: pkgs.perl);
python = test (pkgs: pkgs.python);
}; };