mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 05:51:24 +03:00
7027006e4d
farm). svn path=/nixpkgs/trunk/; revision=13478
15 lines
272 B
Nix
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
|