nixpkgs/pkgs-ng/system/all-packages-generic.fix
Eelco Dolstra 4d037af2de * Added assertions and defaults to the Subversion package.
* Some cleanups.

svn path=/nixpkgs/trunk/; revision=482
2003-11-05 16:28:26 +00:00

170 lines
3.2 KiB
Plaintext

# 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 = (import ../build-support/fetchurl) {
stdenv = stdenv;
};
### TOOLS
coreutils = (import ../tools/misc/coreutils) {
fetchurl = fetchurl;
stdenv = stdenv;
};
findutils = (import ../tools/misc/findutils) {
fetchurl = fetchurl;
stdenv = stdenv;
};
diffutils = (import ../tools/text/diffutils) {
fetchurl = fetchurl;
stdenv = stdenv;
};
gnused = (import ../tools/text/gnused) {
fetchurl = fetchurl;
stdenv = stdenv;
};
gnugrep = (import ../tools/text/gnugrep) {
fetchurl = fetchurl;
stdenv = stdenv;
pcre = pcre;
};
gawk = (import ../tools/text/gawk) {
fetchurl = fetchurl;
stdenv = stdenv;
};
gnutar = (import ../tools/archivers/gnutar) {
fetchurl = fetchurl;
stdenv = stdenv;
};
gzip = (import ../tools/compression/gzip) {
fetchurl = fetchurl;
stdenv = stdenv;
};
bzip2 = (import ../tools/compression/bzip2) {
fetchurl = fetchurl;
stdenv = stdenv;
};
wget = (import ../tools/networking/wget) {
fetchurl = fetchurl;
stdenv = stdenv;
};
### SHELLS
bash = (import ../shells/bash) {
fetchurl = fetchurl;
stdenv = stdenv;
};
### DEVELOPMENT
binutils = (import ../development/tools/misc/binutils) {
fetchurl = fetchurl;
stdenv = stdenv;
};
gnumake = (import ../development/tools/build-managers/gnumake) {
fetchurl = fetchurl;
stdenv = stdenv;
};
gcc = (import ../development/compilers/gcc) {
fetchurl = fetchurl;
stdenv = stdenv;
binutils = binutils;
};
perl = (import ../development/interpreters/perl) {
fetchurl = fetchurl;
stdenv = stdenv;
};
pcre = (import ../development/libraries/pcre) {
fetchurl = fetchurl;
stdenv = stdenv;
};
glibc = (import ../development/libraries/glibc) {
fetchurl = fetchurl;
stdenv = stdenv;
kernelHeaders = kernelHeaders;
};
aterm = (import ../development/libraries/aterm) {
fetchurl = fetchurl;
stdenv = stdenv;
};
expat = (import ../development/libraries/expat) {
fetchurl = fetchurl;
stdenv = stdenv;
};
db4 = (import ../development/libraries/db4) {
fetchurl = fetchurl;
stdenv = stdenv;
};
openssl = (import ../development/libraries/openssl) {
fetchurl = fetchurl;
stdenv = stdenv;
perl = perl;
};
### SERVERS
apacheHttpd = (import ../servers/http/apache-httpd) {
fetchurl = fetchurl;
stdenv = stdenv;
sslSupport = true;
db4Support = true;
perl = perl;
openssl = openssl;
db4 = db4;
expat = expat;
};
### OS-SPECIFIC
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
fetchurl = fetchurl;
stdenv = stdenv;
};
### APPLICATIONS
subversion = (import ../applications/version-management/subversion) {
fetchurl = fetchurl;
stdenv = stdenv;
localServer = true;
httpServer = false;
sslSupport = true;
swigBindings = false;
openssl = openssl;
httpd = apacheHttpd;
db4 = db4;
expat = expat;
};
}