* Test building some random packages.
svn path=/nixpkgs/trunk/; revision=13525
This commit is contained in:
parent
c058ff0e40
commit
18501e572a
@ -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);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user