summary refs log tree commit diff
path: root/pkgs/top-level/release.nix
blob: fe8e276149b756ee4d207458c0b28cd33d8d05cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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