2003-11-02 17:42:19 +00:00
|
|
|
# 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.
|
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
{system, stdenv}: rec {
|
|
|
|
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit stdenv;
|
2003-11-25 18:02:05 +00:00
|
|
|
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
### BUILD SUPPORT
|
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
fetchurl = (import ../build-support/fetchurl) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
fetchsvn = (import ../build-support/fetchsvn) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit stdenv subversion;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
|
|
|
### TOOLS
|
|
|
|
|
|
|
|
coreutils = (import ../tools/misc/coreutils) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
findutils = (import ../tools/misc/findutils) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-12-02 12:54:21 +00:00
|
|
|
getopt = (import ../tools/misc/getopt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-02 12:54:21 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
diffutils = (import ../tools/text/diffutils) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 18:14:24 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
gnused = (import ../tools/text/gnused) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
gnugrep = (import ../tools/text/gnugrep) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pcre;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
gawk = (import ../tools/text/gawk) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 18:14:24 +00:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
ed = (import ../tools/text/ed) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
gnutar = (import ../tools/archivers/gnutar) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-07 11:18:47 +00:00
|
|
|
zip = (import ../tools/archivers/zip) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-07 11:18:47 +00:00
|
|
|
};
|
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
unzip = (import ../tools/archivers/unzip) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
gzip = (import ../tools/compression/gzip) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
bzip2 = (import ../tools/compression/bzip2) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 18:21:30 +00:00
|
|
|
};
|
|
|
|
|
2003-12-23 20:51:58 +00:00
|
|
|
which = (import ../tools/system/which) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-23 20:51:58 +00:00
|
|
|
};
|
|
|
|
|
2003-11-04 08:44:46 +00:00
|
|
|
wget = (import ../tools/networking/wget) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-04 08:44:46 +00:00
|
|
|
};
|
|
|
|
|
2003-12-14 20:36:43 +00:00
|
|
|
par2cmdline = (import ../tools/networking/par2cmdline) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-14 20:36:43 +00:00
|
|
|
};
|
|
|
|
|
2004-01-25 08:59:20 +00:00
|
|
|
cksfv = (import ../tools/networking/cksfv) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-25 08:59:20 +00:00
|
|
|
};
|
|
|
|
|
2003-12-10 09:51:32 +00:00
|
|
|
graphviz = (import ../tools/graphics/graphviz) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libpng libjpeg expat;
|
2003-12-10 09:51:32 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
|
|
|
### SHELLS
|
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
bash = (import ../shells/bash) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
|
|
|
### DEVELOPMENT
|
|
|
|
|
|
|
|
binutils = (import ../development/tools/misc/binutils) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
gnum4 = (import ../development/tools/misc/gnum4) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
autoconf = (import ../development/tools/misc/autoconf) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-25 18:02:05 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-12-23 21:31:06 +00:00
|
|
|
autoconflibtool = (import ../development/tools/misc/autoconf/autoconf-libtool.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-12-23 21:31:06 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
automake = (import ../development/tools/misc/automake) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2003-12-23 20:51:58 +00:00
|
|
|
libtool = (import ../development/tools/misc/libtool) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-12-23 20:51:58 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
|
|
|
autotools = {
|
2003-12-23 21:31:06 +00:00
|
|
|
automake = autoconflibtool;
|
|
|
|
autoconf = autoconflibtool;
|
2003-12-23 20:51:58 +00:00
|
|
|
make = gnumake;
|
2003-12-23 21:31:06 +00:00
|
|
|
libtool = autoconflibtool;
|
2003-12-23 20:51:58 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
pkgconfig = (import ../development/tools/misc/pkgconfig) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2003-12-21 20:52:13 +00:00
|
|
|
swig = (import ../development/tools/misc/swig) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl python;
|
2003-12-21 20:52:13 +00:00
|
|
|
perlSupport = true;
|
|
|
|
pythonSupport = true;
|
|
|
|
};
|
|
|
|
|
2004-01-21 14:50:18 +00:00
|
|
|
valgrind = (import ../development/tools/misc/valgrind) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 14:50:18 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
gnumake = (import ../development/tools/build-managers/gnumake) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 12:43:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bison = (import ../development/tools/parsing/bison) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 12:43:25 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2004-01-30 15:52:17 +00:00
|
|
|
bisonnew = (import ../development/tools/parsing/bison/bison-new.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-30 15:52:17 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 12:43:25 +00:00
|
|
|
flex = (import ../development/tools/parsing/flex) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 12:43:25 +00:00
|
|
|
yacc = bison;
|
|
|
|
};
|
|
|
|
|
2004-01-30 10:10:06 +00:00
|
|
|
flexnew = (import ../development/tools/parsing/flex/flex-new.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-30 10:10:06 +00:00
|
|
|
yacc = bison;
|
2004-01-30 17:23:34 +00:00
|
|
|
m4 = gnum4;
|
2004-01-30 10:10:06 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
gcc = (import ../development/compilers/gcc) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv binutils;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
perl = (import ../development/interpreters/perl) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
2003-12-21 20:52:13 +00:00
|
|
|
python = (import ../development/interpreters/python) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-21 20:52:13 +00:00
|
|
|
};
|
|
|
|
|
2004-01-24 22:04:09 +00:00
|
|
|
python = (import ../development/interpreters/python) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 22:04:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
j2re = (import ../development/interpreters/j2re) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 22:04:09 +00:00
|
|
|
};
|
|
|
|
|
2004-01-24 22:50:47 +00:00
|
|
|
jikes = (import ../development/compilers/jikes) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 22:50:47 +00:00
|
|
|
};
|
|
|
|
|
2004-01-24 23:46:00 +00:00
|
|
|
j2sdk = (import ../development/compilers/j2sdk) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 23:46:00 +00:00
|
|
|
};
|
|
|
|
|
2004-01-25 00:50:00 +00:00
|
|
|
apacheant = (import ../development/tools/build-managers/apache-ant) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv j2sdk;
|
2004-01-25 00:50:00 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
pcre = (import ../development/libraries/pcre) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
glibc = (import ../development/libraries/glibc) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
aterm = (import ../development/libraries/aterm) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2004-01-22 18:57:34 +00:00
|
|
|
aterm_2_0_5 = (import ../development/libraries/aterm/aterm-2.0.5.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 18:13:16 +00:00
|
|
|
};
|
|
|
|
|
2003-12-12 14:46:30 +00:00
|
|
|
sdf2 = (import ../development/tools/parsing/sdf2) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv aterm getopt;
|
2003-12-12 14:46:30 +00:00
|
|
|
};
|
|
|
|
|
2004-01-22 18:57:34 +00:00
|
|
|
toolbuslib_0_5_1 = (import ../development/tools/parsing/toolbuslib/toolbuslib-0.5.1.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 18:57:34 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
};
|
|
|
|
|
2004-01-22 19:55:37 +00:00
|
|
|
ptsupport_1_0 = (import ../development/tools/parsing/pt-support/pt-support-1.0.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 18:57:34 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
toolbuslib = toolbuslib_0_5_1;
|
2004-01-22 18:46:26 +00:00
|
|
|
};
|
|
|
|
|
2004-01-22 19:55:37 +00:00
|
|
|
sdfsupport_2_0 = (import ../development/tools/parsing/sdf-support/sdf-support-2.0.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 19:55:37 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
toolbuslib = toolbuslib_0_5_1;
|
|
|
|
ptsupport = ptsupport_1_0;
|
|
|
|
};
|
|
|
|
|
2004-01-22 19:09:49 +00:00
|
|
|
sglr_3_10_2 = (import ../development/tools/parsing/sglr/sglr-3.10.2.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 19:09:49 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
toolbuslib = toolbuslib_0_5_1;
|
2004-01-22 19:55:37 +00:00
|
|
|
ptsupport = ptsupport_1_0;
|
|
|
|
};
|
|
|
|
|
|
|
|
asfsupport_1_2 = (import ../development/tools/parsing/asf-support/asf-support-1.2.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 19:55:37 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
ptsupport = ptsupport_1_0;
|
|
|
|
};
|
|
|
|
|
|
|
|
ascsupport_1_8 = (import ../development/tools/parsing/asc-support/asc-support-1.8.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-22 19:55:37 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
toolbuslib = toolbuslib_0_5_1;
|
|
|
|
ptsupport = ptsupport_1_0;
|
|
|
|
asfsupport = asfsupport_1_2;
|
|
|
|
};
|
|
|
|
|
|
|
|
pgen_2_0 = (import ../development/tools/parsing/pgen/pgen-2.0.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv getopt;
|
2004-01-22 19:55:37 +00:00
|
|
|
aterm = aterm_2_0_5;
|
|
|
|
toolbuslib = toolbuslib_0_5_1;
|
|
|
|
ptsupport = ptsupport_1_0;
|
|
|
|
asfsupport = asfsupport_1_2;
|
|
|
|
ascsupport = ascsupport_1_8;
|
|
|
|
sdfsupport = sdfsupport_2_0;
|
|
|
|
sglr = sglr_3_10_2;
|
2004-01-22 19:09:49 +00:00
|
|
|
};
|
|
|
|
|
2003-12-12 14:46:30 +00:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv aterm;
|
2003-12-12 14:46:30 +00:00
|
|
|
sdf = sdf2;
|
|
|
|
};
|
|
|
|
|
2003-12-23 20:51:58 +00:00
|
|
|
strategoxtsvn = (import ../development/compilers/strategoxt/trunk.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchsvn stdenv autotools which aterm;
|
2003-12-23 20:51:58 +00:00
|
|
|
sdf = sdf2;
|
|
|
|
};
|
|
|
|
|
2003-12-12 14:46:30 +00:00
|
|
|
strategoxt093 = (import ../development/compilers/strategoxt/strategoxt-0.9.3.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv aterm;
|
2003-12-12 14:46:30 +00:00
|
|
|
sdf = sdf2;
|
|
|
|
};
|
|
|
|
|
|
|
|
tiger = (import ../development/compilers/tiger) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv aterm strategoxt;
|
2003-12-12 14:46:30 +00:00
|
|
|
sdf = sdf2;
|
|
|
|
};
|
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
expat = (import ../development/libraries/expat) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
libxslt = (import ../development/libraries/libxslt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libxml2;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2004-02-04 16:36:22 +00:00
|
|
|
libxml2_265 = (import ../development/libraries/libxml2/libxml2-2.6.5.nix) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
gettext = (import ../development/libraries/gettext) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
db4 = (import ../development/libraries/db4) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
openssl = (import ../development/libraries/openssl) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
freetype = (import ../development/libraries/freetype) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fontconfig = (import ../development/libraries/fontconfig) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv freetype expat ed;
|
2003-11-06 15:24:19 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
};
|
|
|
|
|
|
|
|
xft = (import ../development/libraries/xft) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig fontconfig;
|
2003-11-06 15:24:19 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
};
|
|
|
|
|
|
|
|
zlib = (import ../development/libraries/zlib) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libjpeg = (import ../development/libraries/libjpeg) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libtiff = (import ../development/libraries/libtiff) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv zlib libjpeg;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libpng = (import ../development/libraries/libpng) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
popt = (import ../development/libraries/popt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv gettext;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
scrollkeeper = (import ../development/libraries/scrollkeeper) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl libxml2 libxslt
|
|
|
|
docbook_xml_dtd perlXMLParser;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
glib = (import ../development/libraries/gtk+/glib) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
atk = (import ../development/libraries/gtk+/atk) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig glib perl;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pango = (import ../development/libraries/gtk+/pango) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig glib xft;
|
2003-11-06 15:24:19 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
};
|
|
|
|
|
|
|
|
gtk = (import ../development/libraries/gtk+/gtk+) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig glib atk pango perl
|
|
|
|
libtiff libjpeg libpng;
|
2003-11-06 15:24:19 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:28:57 +00:00
|
|
|
glib1 = (import ../development/libraries/gtk+-1/glib) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:28:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gtk1 = (import ../development/libraries/gtk+-1/gtk+) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:28:57 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
glib = glib1;
|
|
|
|
};
|
|
|
|
|
|
|
|
gdkpixbuf = (import ../development/libraries/gtk+-1/gdk-pixbuf) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libtiff libjpeg libpng;
|
2003-11-06 16:28:57 +00:00
|
|
|
gtk = gtk1;
|
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
audiofile = (import ../development/libraries/audiofile) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
esound = (import ../development/libraries/gnome/esound) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv audiofile;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libIDL = (import ../development/libraries/gnome/libIDL) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig glib;
|
2004-01-21 09:34:19 +00:00
|
|
|
lex = flex;
|
|
|
|
yacc = bison;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
ORBit2 = (import ../development/libraries/gnome/ORBit2) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig glib libIDL popt;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
GConf = (import ../development/libraries/gnome/GConf) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl glib gtk libxml2 ORBit2 popt;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libbonobo = (import ../development/libraries/gnome/libbonobo) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl ORBit2 libxml2 popt flex;
|
2003-11-07 11:18:47 +00:00
|
|
|
yacc = bison;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gnomemimedata = (import ../development/libraries/gnome/gnome-mime-data) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gnomevfs = (import ../development/libraries/gnome/gnome-vfs) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl glib libxml2 GConf
|
|
|
|
libbonobo gnomemimedata popt bzip2;
|
|
|
|
# !!! use stdenv.bzip2
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libgnome = (import ../development/libraries/gnome/libgnome) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl glib gnomevfs
|
|
|
|
libbonobo GConf popt zlib;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libart_lgpl = (import ../development/libraries/gnome/libart_lgpl) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libglade = (import ../development/libraries/gnome/libglade) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gtk libxml2;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libgnomecanvas = (import ../development/libraries/gnome/libgnomecanvas) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gtk libglade;
|
2004-01-21 09:34:19 +00:00
|
|
|
libart = libart_lgpl;
|
|
|
|
};
|
|
|
|
|
|
|
|
libbonoboui = (import ../development/libraries/gnome/libbonoboui) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl libxml2 libglade
|
|
|
|
libgnome libgnomecanvas;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libgnomeui = (import ../development/libraries/gnome/libgnomeui) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig libgnome libgnomecanvas
|
|
|
|
libbonoboui libglade;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
wxGTK = (import ../development/libraries/wxGTK) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 09:34:19 +00:00
|
|
|
fetchurl = fetchurl;
|
|
|
|
stdenv = stdenv;
|
|
|
|
pkgconfig = pkgconfig;
|
|
|
|
gtk = gtk;
|
|
|
|
};
|
|
|
|
|
|
|
|
gnet = (import ../development/libraries/gnet) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig glib;
|
2003-11-07 11:18:47 +00:00
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
|
2003-12-03 21:58:16 +00:00
|
|
|
libdvdcss = (import ../development/libraries/libdvdcss) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdread = (import ../development/libraries/libdvdread) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libdvdcss;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdplay = (import ../development/libraries/libdvdplay) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libdvdread;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mpeg2dec = (import ../development/libraries/mpeg2dec) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
a52dec = (import ../development/libraries/a52dec) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libmad = (import ../development/libraries/libmad) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
2004-01-25 08:51:03 +00:00
|
|
|
zvbi = (import ../development/libraries/zvbi) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libpng;
|
2004-01-25 08:51:03 +00:00
|
|
|
pngSupport = true;
|
2004-02-02 21:40:18 +00:00
|
|
|
x11 = xfree86;
|
2004-01-25 08:51:03 +00:00
|
|
|
libpng = libpng;
|
|
|
|
};
|
|
|
|
|
2003-12-21 20:52:13 +00:00
|
|
|
perlBerkeleyDB = (import ../development/perl-modules/BerkeleyDB) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl db4;
|
2003-12-21 20:52:13 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
perlXMLParser = (import ../development/perl-modules/XML-Parser) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl expat;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 16:28:57 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
### SERVERS
|
|
|
|
|
|
|
|
apacheHttpd = (import ../servers/http/apache-httpd) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl openssl db4 expat;
|
2003-11-05 12:17:48 +00:00
|
|
|
sslSupport = true;
|
|
|
|
db4Support = true;
|
|
|
|
};
|
|
|
|
|
2003-11-06 12:43:25 +00:00
|
|
|
xfree86 = (import ../servers/x11/xfree86) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv flex bison;
|
2003-11-06 12:43:25 +00:00
|
|
|
buildServer = false;
|
|
|
|
buildClientLibs = true;
|
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
### OS-SPECIFIC
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2003-11-11 15:57:15 +00:00
|
|
|
alsaLib = (import ../os-specific/linux/alsa/library) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-11 15:57:15 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
### DATA
|
|
|
|
|
|
|
|
docbook_xml_dtd = (import ../data/sgml+xml/schemas/xml-dtd/docbook) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv unzip;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
docbook_xml_xslt = (import ../data/sgml+xml/stylesheets/xslt/docbook) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
### APPLICATIONS
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2003-11-04 08:36:32 +00:00
|
|
|
subversion = (import ../applications/version-management/subversion) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv openssl db4 expat swig;
|
2003-11-05 12:17:48 +00:00
|
|
|
localServer = true;
|
2003-11-03 16:18:00 +00:00
|
|
|
httpServer = false;
|
2003-11-05 12:17:48 +00:00
|
|
|
sslSupport = true;
|
2003-11-03 16:18:00 +00:00
|
|
|
swigBindings = false;
|
2003-11-05 12:17:48 +00:00
|
|
|
httpd = apacheHttpd;
|
2003-11-04 08:36:32 +00:00
|
|
|
};
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
pan = (import ../applications/networking/newsreaders/pan) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gtk gnet libxml2 perl pcre;
|
2003-11-06 15:24:19 +00:00
|
|
|
spellChecking = false;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:28:57 +00:00
|
|
|
sylpheed = (import ../applications/networking/mailreaders/sylpheed) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv openssl gdkpixbuf;
|
2003-11-06 16:28:57 +00:00
|
|
|
sslSupport = true;
|
|
|
|
imageSupport = true;
|
|
|
|
gtk = gtk1;
|
|
|
|
};
|
|
|
|
|
2004-02-10 18:32:42 +00:00
|
|
|
firefox = (import ../applications/networking/browsers/firefox) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gtk perl zip libIDL;
|
2003-11-07 11:18:47 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 15:01:07 +00:00
|
|
|
MPlayer = (import ../applications/video/MPlayer) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv freetype;
|
2003-11-11 15:57:15 +00:00
|
|
|
alsaSupport = true;
|
2003-11-11 15:01:07 +00:00
|
|
|
x11 = xfree86;
|
2003-11-11 15:57:15 +00:00
|
|
|
alsa = alsaLib;
|
2003-11-11 15:01:07 +00:00
|
|
|
};
|
|
|
|
|
2003-11-13 13:11:38 +00:00
|
|
|
MPlayerPlugin = (import ../applications/video/mplayerplug-in) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-13 13:11:38 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
};
|
|
|
|
|
2003-12-03 21:58:16 +00:00
|
|
|
vlc = (import ../applications/video/vlc) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv wxGTK libdvdcss libdvdplay
|
|
|
|
mpeg2dec a52dec libmad;
|
2003-12-03 21:58:16 +00:00
|
|
|
x11 = xfree86;
|
|
|
|
alsa = alsaLib;
|
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
zapping = (import ../applications/video/zapping) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl python libgnomeui libglade
|
|
|
|
scrollkeeper esound gettext zvbi libjpeg libpng;
|
2004-01-21 09:34:19 +00:00
|
|
|
x11 = xfree86;
|
2004-01-25 08:51:03 +00:00
|
|
|
teletextSupport = true;
|
|
|
|
jpegSupport = true;
|
|
|
|
pngSupport = true;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 16:13:13 +00:00
|
|
|
gqview = (import ../applications/graphics/gqview) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gtk libpng;
|
2003-11-11 16:13:13 +00:00
|
|
|
};
|
|
|
|
|
2003-11-27 12:09:22 +00:00
|
|
|
hello = (import ../applications/misc/hello) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-27 12:09:22 +00:00
|
|
|
};
|
|
|
|
|
2003-12-08 11:56:50 +00:00
|
|
|
nxml = (import ../applications/editors/emacs/modes/nxml) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-08 11:56:50 +00:00
|
|
|
};
|
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
}
|