summary refs log tree commit diff
path: root/pkgs-ng/system/all-packages-generic.fix
blob: 4722e6f123bc5dd1ff5a9b234df7f80d4c27ccc2 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# 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 {

  # build-support/fetchurl
  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/glibc
  glibc = (import ../devel/libs/glibc) {
    fetchurl = fetchurl;
    stdenv = stdenv;
    kernelHeaders = kernelHeaders;
  };

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

  # os-specific/linux/kernel-headers
  kernelHeaders = (import ../os-specific/linux/kernel-headers) {
    fetchurl = fetchurl;
    stdenv = stdenv;
  };

  # applications/version-management/subversion
  subversion = (import ../applications/version-management/subversion) {
    fetchurl = fetchurl;
    stdenv = stdenv;
    localServer = false;
    httpServer = false;
    sslSupport = false;
    swigBindings = false;
    openssl = "";
    httpd = "";
    db4 = "";
    libxml2 = "";
    expat = "";
    swig = "";
  };
}