summary refs log tree commit diff
path: root/pkgs-ng/system/all-packages-generic.fix
blob: d26641654e59860705cc8749f6cfc9981dcac4c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# This file evaluates to a function that, when supplied with a system
# identifier and a standard build environment, returns the set of all
# packages provided by the Nix Package Collection.

{system, stdenv}: rec
  { fetchurl = (import ../build-support/fetchurl)
      { stdenv = stdenv
      }

  # sys-utils/coreutils
  , coreutils = (import ../sys-utils/coreutils)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # sys-utils/findutils
  , findutils = (import ../sys-utils/findutils)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # sys-utils/diffutils
  , diffutils = (import ../sys-utils/diffutils)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # sys-utils/gnused
  , gnused = (import ../sys-utils/gnused)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # sys-utils/gnugrep
  , gnugrep = (import ../sys-utils/gnugrep)
      { fetchurl = fetchurl
      , stdenv = stdenv
      , pcre = pcre
      }

  # sys-utils/gawk
  , gawk = (import ../sys-utils/gawk)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # archivers/gnutar
  , gnutar = (import ../archivers/gnutar)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # compression/gzip
  , gzip = (import ../compression/gzip)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # shells/bash
  , bash = (import ../shells/bash)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # devel/tools/binutils
  , binutils = (import ../devel/tools/binutils)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # devel/tools/gnumake
  , gnumake = (import ../devel/tools/gnumake)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # devel/compilers/gcc
  , gcc = (import ../devel/compilers/gcc)
      { fetchurl = fetchurl
      , stdenv = stdenv
      , binutils = binutils
      }

  # devel/libs/pcre
  , pcre = (import ../devel/libs/pcre)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }

  # devel/libs/aterm
  , aterm = (import ../devel/libs/aterm)
      { fetchurl = fetchurl
      , stdenv = stdenv
      }
  }