nixpkgs/pkgs/top-level/build-for-release.nix
Eelco Dolstra 0c78e480fc * Build a small number of packages to test the stdenv-updates branch.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9797
2007-11-26 14:41:08 +00:00

33 lines
499 B
Nix

let {
allPackages = import ./all-packages.nix;
i686LinuxPkgs = {inherit (allPackages {system = "i686-linux";})
aterm
gcc
nixUnstable
pan
subversion
;
};
x86_64LinuxPkgs = {inherit (allPackages {system = "x86_64-linux";})
aterm
gcc
nixUnstable
pan
subversion
;
};
powerpcLinuxPkgs = {inherit (allPackages {system = "powerpc-linux";})
aterm
;};
body = [
i686LinuxPkgs
x86_64LinuxPkgs
# powerpcLinuxPkgs
];
}