nixpkgs/pkgs/top-level/release.nix
Eelco Dolstra 7027006e4d * A release expression for building Nixpkgs on Hydra (the new build
farm).

svn path=/nixpkgs/trunk/; revision=13478
2008-11-28 10:56:36 +00:00

15 lines
272 B
Nix

let
allPackages = import ./all-packages.nix;
pkgs = {
inherit (allPackages {system = "i686-linux";})
bash
gcc
;
hello = {system}: (allPackages {inherit system;}).hello;
pan = {system}: (allPackages {inherit system;}).pan;
};
in pkgs