2003-11-02 18:42:19 +01: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.
|
|
|
|
|
2004-09-18 19:23:18 +02:00
|
|
|
{ stdenv, bootCurl, noSysDirs ? true
|
|
|
|
, gccWithCC ? true
|
|
|
|
, gccWithProfiling ? true
|
|
|
|
}:
|
2004-03-11 18:26:14 +01:00
|
|
|
|
|
|
|
rec {
|
2003-11-03 11:22:00 +01:00
|
|
|
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit stdenv;
|
2003-11-25 19:02:05 +01:00
|
|
|
|
|
|
|
|
2004-03-27 22:59:31 +01:00
|
|
|
### Symbolic names.
|
|
|
|
|
2004-04-05 15:34:13 +02:00
|
|
|
x11 = xlibs.xlibs; # !!! should be `x11ClientLibs' or some such
|
2004-03-27 22:59:31 +01:00
|
|
|
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
### BUILD SUPPORT
|
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
fetchurl = (import ../build-support/fetchurl) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit stdenv;
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 17:53:04 +01:00
|
|
|
curl = bootCurl;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
fetchsvn = (import ../build-support/fetchsvn) {
|
2004-04-14 12:55:33 +02:00
|
|
|
inherit stdenv subversion nix;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
|
|
|
|
### TOOLS
|
|
|
|
|
|
|
|
coreutils = (import ../tools/misc/coreutils) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
findutils = (import ../tools/misc/findutils) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-12-02 13:54:21 +01:00
|
|
|
getopt = (import ../tools/misc/getopt) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-02 13:54:21 +01:00
|
|
|
};
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
diffutils = (import ../tools/text/diffutils) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv coreutils;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 19:14:24 +01:00
|
|
|
|
2004-02-13 15:42:28 +01:00
|
|
|
gnupatch = (import ../tools/text/gnupatch) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-09 16:33:14 +02:00
|
|
|
patch = if stdenv.system == "powerpc-darwin" then null else gnupatch;
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
gnused = (import ../tools/text/gnused) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
gnugrep = (import ../tools/text/gnugrep) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv pcre;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
gawk = (import ../tools/text/gawk) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 19:14:24 +01:00
|
|
|
|
2004-06-03 19:16:16 +02:00
|
|
|
enscript = (import ../tools/text/enscript) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
ed = (import ../tools/text/ed) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2004-08-21 00:06:36 +02:00
|
|
|
xpf = (import ../tools/text/xml/xpf) {
|
|
|
|
inherit fetchurl stdenv python libxml2;
|
|
|
|
};
|
|
|
|
|
2004-09-26 15:03:59 +02:00
|
|
|
jing_tools = (import ../tools/text/xml/jing/jing-script.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
j2re = blackdown;
|
|
|
|
};
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
gnutar = (import ../tools/archivers/gnutar) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-07 12:18:47 +01:00
|
|
|
zip = (import ../tools/archivers/zip) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
unzip = (import ../tools/archivers/unzip) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
gzip = (import ../tools/compression/gzip) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
bzip2 = (import ../tools/compression/bzip2) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 19:21:30 +01:00
|
|
|
};
|
|
|
|
|
2003-12-23 21:51:58 +01:00
|
|
|
which = (import ../tools/system/which) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-23 21:51:58 +01:00
|
|
|
};
|
|
|
|
|
2003-11-04 09:44:46 +01:00
|
|
|
wget = (import ../tools/networking/wget) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-04 09:44:46 +01:00
|
|
|
};
|
|
|
|
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 17:53:04 +01:00
|
|
|
curl = (import ../tools/networking/curl) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2003-12-14 21:36:43 +01:00
|
|
|
par2cmdline = (import ../tools/networking/par2cmdline) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-14 21:36:43 +01:00
|
|
|
};
|
|
|
|
|
2004-01-25 09:59:20 +01:00
|
|
|
cksfv = (import ../tools/networking/cksfv) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-25 09:59:20 +01:00
|
|
|
};
|
|
|
|
|
2004-02-17 21:03:12 +01:00
|
|
|
bittorrent = (import ../tools/networking/bittorrent) {
|
|
|
|
inherit fetchurl stdenv wxPython;
|
|
|
|
};
|
|
|
|
|
2003-12-10 10:51:32 +01:00
|
|
|
graphviz = (import ../tools/graphics/graphviz) {
|
2004-09-22 10:49:22 +02:00
|
|
|
inherit fetchurl stdenv libpng libjpeg expat x11 yacc;
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit (xlibs) libXaw;
|
2003-12-10 10:51:32 +01:00
|
|
|
};
|
|
|
|
|
2004-07-28 12:49:55 +02:00
|
|
|
hevea = (import ../tools/typesetting/hevea) {
|
|
|
|
inherit fetchurl stdenv ocaml;
|
|
|
|
};
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2004-07-30 18:15:55 +02:00
|
|
|
less = (import ../tools/misc/less) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
|
|
|
screen = (import ../tools/misc/screen) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2004-08-02 14:27:01 +02:00
|
|
|
};
|
2004-07-30 18:15:55 +02:00
|
|
|
|
2004-09-22 21:31:39 +02:00
|
|
|
xsel = (import ../tools/misc/xsel) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
};
|
|
|
|
|
2004-08-02 14:27:01 +02:00
|
|
|
openssh = (import ../tools/networking/openssh) {
|
|
|
|
inherit fetchurl stdenv zlib openssl;
|
2004-07-30 18:15:55 +02:00
|
|
|
};
|
2004-08-02 14:27:01 +02:00
|
|
|
|
2004-08-03 17:41:08 +02:00
|
|
|
mktemp = (import ../tools/security/mktemp) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-06 12:01:15 +02:00
|
|
|
nmap = (import ../tools/security/nmap) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
### SHELLS
|
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
bash = (import ../shells/bash) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
|
|
|
|
### DEVELOPMENT
|
|
|
|
|
|
|
|
binutils = (import ../development/tools/misc/binutils) {
|
2004-03-11 18:26:14 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2004-09-25 21:32:23 +02:00
|
|
|
patchelf = (import ../development/tools/misc/patchelf) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
gnum4 = (import ../development/tools/misc/gnum4) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
autoconf = (import ../development/tools/misc/autoconf) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-25 19:02:05 +01:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
|
|
|
automake = (import ../development/tools/misc/automake) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2003-12-23 21:51:58 +01:00
|
|
|
libtool = (import ../development/tools/misc/libtool) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-12-23 21:51:58 +01:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
pkgconfig = (import ../development/tools/misc/pkgconfig) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2004-08-04 12:11:50 +02:00
|
|
|
strace = (import ../development/tools/misc/strace) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-12-21 21:52:13 +01:00
|
|
|
swig = (import ../development/tools/misc/swig) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl python;
|
2003-12-21 21:52:13 +01:00
|
|
|
perlSupport = true;
|
|
|
|
pythonSupport = true;
|
2004-08-23 21:23:03 +02:00
|
|
|
javaSupport = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
swigWithJava = (import ../development/tools/misc/swig) {
|
2004-09-08 16:39:30 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
j2sdk = blackdown;
|
2004-08-23 21:23:03 +02:00
|
|
|
perlSupport = false;
|
|
|
|
pythonSupport = false;
|
|
|
|
javaSupport = true;
|
2003-12-21 21:52:13 +01:00
|
|
|
};
|
|
|
|
|
2004-01-21 15:50:18 +01:00
|
|
|
valgrind = (import ../development/tools/misc/valgrind) {
|
2004-04-22 16:38:43 +02:00
|
|
|
inherit fetchurl stdenv perl;
|
2004-01-21 15:50:18 +01:00
|
|
|
};
|
|
|
|
|
2004-03-05 11:13:23 +01:00
|
|
|
texinfo = (import ../development/tools/misc/texinfo) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
|
|
|
gperf = (import ../development/tools/misc/gperf) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-05 15:05:38 +02:00
|
|
|
octave = (import ../development/interpreters/octave) {
|
2004-09-27 14:24:06 +02:00
|
|
|
inherit fetchurl stdenv readline ncurses g77 perl;
|
2004-03-05 11:13:23 +01:00
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
gnumake = (import ../development/tools/build-managers/gnumake) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 13:43:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
bison = (import ../development/tools/parsing/bison) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 13:43:25 +01:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2004-09-22 10:49:22 +02:00
|
|
|
yacc = bison;
|
|
|
|
|
2004-01-30 16:52:17 +01:00
|
|
|
bisonnew = (import ../development/tools/parsing/bison/bison-new.nix) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-30 16:52:17 +01:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 13:43:25 +01:00
|
|
|
flex = (import ../development/tools/parsing/flex) {
|
2004-09-22 10:49:22 +02:00
|
|
|
inherit fetchurl stdenv yacc;
|
2003-11-06 13:43:25 +01:00
|
|
|
};
|
|
|
|
|
2004-01-30 11:10:06 +01:00
|
|
|
flexnew = (import ../development/tools/parsing/flex/flex-new.nix) {
|
2004-09-22 10:49:22 +02:00
|
|
|
inherit fetchurl stdenv yacc;
|
2004-01-30 18:23:34 +01:00
|
|
|
m4 = gnum4;
|
2004-01-30 11:10:06 +01:00
|
|
|
};
|
|
|
|
|
2004-09-18 19:23:18 +02:00
|
|
|
gcc = (import ../development/compilers/gcc-3.4) {
|
2004-03-11 18:26:14 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-09-18 19:23:18 +02:00
|
|
|
langCC = gccWithCC;
|
|
|
|
profiledCompiler = gccWithProfiling;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2004-09-21 17:31:23 +02:00
|
|
|
gccWrapped = (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = stdenv.gcc;
|
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2004-09-02 15:56:36 +02:00
|
|
|
gcc_static = (import ../stdenv/nix-linux/gcc-static) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-09-18 23:20:15 +02:00
|
|
|
gcc33 = (import ../build-support/gcc-wrapper) {
|
2004-06-29 10:25:55 +02:00
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2004-09-18 23:20:15 +02:00
|
|
|
gcc = (import ../development/compilers/gcc-3.3) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-06-29 10:25:55 +02:00
|
|
|
};
|
2004-09-18 23:20:15 +02:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-06-29 10:25:55 +02:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-03 12:36:29 +02:00
|
|
|
gcc295 = (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = (import ../development/compilers/gcc-2.95) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-08-03 12:36:29 +02:00
|
|
|
};
|
2004-09-18 23:20:15 +02:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-08-03 12:36:29 +02:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2004-03-08 17:02:46 +01:00
|
|
|
g77 = (import ../build-support/gcc-wrapper) {
|
2004-03-11 18:26:14 +01:00
|
|
|
name = "g77";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2004-09-18 19:23:18 +02:00
|
|
|
gcc = (import ../development/compilers/gcc-3.3) {
|
2004-03-11 18:26:14 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-03-05 11:13:23 +01:00
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
|
|
|
};
|
2004-09-18 23:20:15 +02:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-03-11 18:26:14 +01:00
|
|
|
inherit stdenv;
|
2004-03-05 11:13:23 +01:00
|
|
|
};
|
|
|
|
|
2004-02-12 14:18:24 +01:00
|
|
|
jikes = (import ../development/compilers/jikes) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2004-08-24 11:12:01 +02:00
|
|
|
blackdown = (import ../development/compilers/blackdown) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-02-12 14:18:24 +01:00
|
|
|
j2sdk = (import ../development/compilers/j2sdk) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-21 21:52:13 +01:00
|
|
|
};
|
|
|
|
|
2004-05-12 17:06:23 +02:00
|
|
|
j2sdk15 = (import ../development/compilers/j2sdk/default-1.5.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-25 19:11:52 +02:00
|
|
|
saxon = (import ../development/libraries/java/saxon) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-08-25 19:18:19 +02:00
|
|
|
saxonb = (import ../development/libraries/java/saxon/default8.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-08-10 13:07:50 +02:00
|
|
|
sharedobjects = (import ../development/libraries/java/shared-objects) {
|
|
|
|
j2sdk = j2sdk15;
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
jjtraveler = (import ../development/libraries/java/jjtraveler) {
|
|
|
|
j2sdk = j2sdk15;
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
atermjava = (import ../development/libraries/java/aterm) {
|
|
|
|
j2sdk = j2sdk15;
|
|
|
|
inherit fetchurl stdenv sharedobjects jjtraveler;
|
|
|
|
};
|
|
|
|
|
|
|
|
jakartaregexp = (import ../development/libraries/java/jakarta-regexp) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
jakartabcel = (import ../development/libraries/java/jakarta-bcel) {
|
|
|
|
regexp = jakartaregexp;
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-19 15:57:38 +02:00
|
|
|
jclasslib = (import ../development/tools/java/jclasslib) {
|
2004-08-21 00:48:59 +02:00
|
|
|
inherit fetchurl stdenv xpf;
|
2004-08-19 15:57:38 +02:00
|
|
|
j2re = j2sdk15;
|
2004-08-24 13:38:40 +02:00
|
|
|
ant = apacheAnt14;
|
2004-08-19 15:57:38 +02:00
|
|
|
};
|
|
|
|
|
2004-07-28 12:08:31 +02:00
|
|
|
ocaml = (import ../development/compilers/ocaml) {
|
2004-07-28 13:16:25 +02:00
|
|
|
inherit fetchurl stdenv x11;
|
2004-07-17 00:58:15 +02:00
|
|
|
};
|
|
|
|
|
2004-08-10 13:07:50 +02:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt) {
|
|
|
|
inherit fetchurl stdenv aterm;
|
|
|
|
sdf = sdf_22;
|
|
|
|
};
|
2004-02-12 14:18:24 +01:00
|
|
|
|
2004-08-17 13:53:31 +02:00
|
|
|
bibtextools = (import ../tools/typesetting/bibtex-tools) {
|
|
|
|
inherit fetchurl stdenv aterm strategoxt hevea;
|
|
|
|
sdf = sdf_22;
|
|
|
|
};
|
|
|
|
|
2004-09-13 10:45:50 +02:00
|
|
|
xdoc = (import ../development/tools/documentation/xdoc) {
|
|
|
|
inherit fetchurl stdenv aterm strategoxt subversion graphviz;
|
|
|
|
sdf = sdf_22;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-08-03 17:41:08 +02:00
|
|
|
#strategoxtsvn = (import ../development/compilers/strategoxt/trunk.nix) {
|
|
|
|
# inherit fetchsvn stdenv autoconf automake libtool which aterm;
|
|
|
|
# sdf = sdf_22;
|
|
|
|
#};
|
2004-02-12 14:18:24 +01:00
|
|
|
|
2004-08-03 17:41:08 +02:00
|
|
|
#strategoxtdailydist = (import ../development/compilers/strategoxt/dailydist.nix) {
|
|
|
|
# inherit fetchurl stdenv aterm;
|
|
|
|
# sdf = sdf_22;
|
|
|
|
#};
|
2004-06-21 15:17:20 +02:00
|
|
|
|
2004-08-03 17:41:08 +02:00
|
|
|
#tiger = (import ../development/compilers/tiger) {
|
|
|
|
# inherit fetchurl stdenv aterm strategoxt;
|
|
|
|
# sdf = sdf_22;
|
|
|
|
#};
|
2004-02-12 14:18:24 +01:00
|
|
|
|
|
|
|
ghcboot = (import ../development/compilers/ghc/boot.nix) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
|
|
|
|
|
|
|
ghc = (import ../development/compilers/ghc) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
ghc = ghcboot;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
|
|
|
helium = (import ../development/compilers/helium) {
|
|
|
|
inherit fetchurl stdenv ghc;
|
|
|
|
};
|
|
|
|
|
2004-06-09 16:23:05 +02:00
|
|
|
happy = (import ../development/tools/parsing/happy) {
|
|
|
|
inherit fetchurl stdenv perl ghc;
|
|
|
|
};
|
|
|
|
|
|
|
|
harp = (import ../development/compilers/harp) {
|
|
|
|
inherit fetchurl stdenv unzip ghc happy;
|
|
|
|
};
|
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
nasm = (import ../development/compilers/nasm) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-07-01 18:57:31 +02:00
|
|
|
realPerl = (import ../development/interpreters/perl) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 23:04:09 +01:00
|
|
|
};
|
|
|
|
|
2004-07-01 18:57:31 +02:00
|
|
|
sysPerl = (import ../development/interpreters/sys-perl) {
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-09 16:33:14 +02:00
|
|
|
perl = if stdenv.system == "powerpc-darwin" then sysPerl else realPerl;
|
2004-07-01 18:57:31 +02:00
|
|
|
|
2004-02-12 14:18:24 +01:00
|
|
|
python = (import ../development/interpreters/python) {
|
2004-02-17 21:03:12 +01:00
|
|
|
inherit fetchurl stdenv zlib;
|
2004-01-24 23:50:47 +01:00
|
|
|
};
|
|
|
|
|
2004-08-23 12:44:21 +02:00
|
|
|
clisp = (import ../development/interpreters/clisp) {
|
|
|
|
inherit fetchurl stdenv libsigsegv gettext;
|
|
|
|
};
|
|
|
|
|
2004-02-12 14:18:24 +01:00
|
|
|
j2re = (import ../development/interpreters/j2re) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-25 00:46:00 +01:00
|
|
|
};
|
|
|
|
|
2004-08-23 19:06:50 +02:00
|
|
|
kaffe = (import ../development/interpreters/kaffe) {
|
|
|
|
inherit fetchurl stdenv jikes alsaLib xlibs;
|
|
|
|
};
|
|
|
|
|
2004-08-24 13:38:40 +02:00
|
|
|
apacheAnt14 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-10 13:07:50 +02:00
|
|
|
inherit fetchurl stdenv j2sdk;
|
2004-08-24 13:26:26 +02:00
|
|
|
name = "ant-j2sdk-1.4.2";
|
2004-08-10 13:07:50 +02:00
|
|
|
};
|
|
|
|
|
2004-08-24 13:38:40 +02:00
|
|
|
apacheAntBlackdown14 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-24 13:26:26 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
j2sdk = blackdown;
|
|
|
|
name = "ant-blackdown-1.4.2";
|
|
|
|
};
|
|
|
|
|
2004-08-24 13:38:40 +02:00
|
|
|
apacheAnt15 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-24 13:26:26 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
name = "ant-j2sdk-1.5.0";
|
|
|
|
j2sdk = j2sdk15;
|
|
|
|
};
|
2004-08-20 12:14:55 +02:00
|
|
|
|
|
|
|
tomcat5 = (import ../servers/http/tomcat) {
|
2004-08-25 11:33:43 +02:00
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
j2sdk = blackdown;
|
2004-01-25 01:50:00 +01:00
|
|
|
};
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
pcre = (import ../development/libraries/pcre) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
glibc = (import ../development/libraries/glibc) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
2004-09-18 23:20:15 +02:00
|
|
|
installLocales = true;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 23:25:26 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
aterm = (import ../development/libraries/aterm) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 23:25:26 +01:00
|
|
|
|
2004-07-03 12:47:58 +02:00
|
|
|
sdf_22 = (import ../development/tools/parsing/sdf2/bundle-2.2.nix) {
|
|
|
|
inherit fetchurl stdenv getopt aterm;
|
|
|
|
};
|
|
|
|
|
2004-05-13 20:16:56 +02:00
|
|
|
sdf_21 = (import ../development/tools/parsing/sdf2/bundle-2.1.nix) {
|
2004-05-13 20:06:09 +02:00
|
|
|
inherit fetchurl stdenv getopt aterm;
|
|
|
|
};
|
|
|
|
|
2004-05-13 20:16:56 +02:00
|
|
|
sdf_20 = (import ../development/tools/parsing/sdf2/bundle-2.0.nix) {
|
|
|
|
inherit fetchurl stdenv getopt aterm;
|
2004-01-22 20:55:37 +01:00
|
|
|
};
|
|
|
|
|
2004-05-13 20:16:56 +02:00
|
|
|
sdf2_bundle = (import ../development/tools/parsing/sdf2-bundle) {
|
|
|
|
inherit fetchurl stdenv aterm getopt;
|
2004-01-22 20:09:49 +01:00
|
|
|
};
|
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
expat = (import ../development/libraries/expat) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
2004-08-19 17:28:48 +02:00
|
|
|
inherit fetchurl stdenv zlib python;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
libxslt = (import ../development/libraries/libxslt) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv libxml2;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
gettext = (import ../development/libraries/gettext) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
db4 = (import ../development/libraries/db4) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
openssl = (import ../development/libraries/openssl) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
freetype = (import ../development/libraries/freetype) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2004-09-18 19:58:42 +02:00
|
|
|
zlib = (import ../development/libraries/zlib) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 16:24:19 +01:00
|
|
|
|
|
|
|
libjpeg = (import ../development/libraries/libjpeg) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
libtiff = (import ../development/libraries/libtiff) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv zlib libjpeg;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
libpng = (import ../development/libraries/libpng) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv zlib;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2004-08-23 11:35:36 +02:00
|
|
|
libsigsegv = (import ../development/libraries/libsigsegv) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-01-21 10:34:19 +01:00
|
|
|
popt = (import ../development/libraries/popt) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv gettext;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
scrollkeeper = (import ../development/libraries/scrollkeeper) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl libxml2 libxslt
|
2004-04-08 16:06:15 +02:00
|
|
|
docbook_xml_dtd_42 perlXMLParser;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2004-04-05 15:42:41 +02:00
|
|
|
gtkLibs = import ../development/libraries/gtk-libs-2.4 {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2004-04-05 16:09:01 +02:00
|
|
|
gtkLibs22 = import ../development/libraries/gtk-libs-2.2 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
|
|
|
};
|
|
|
|
|
2004-04-05 15:42:41 +02:00
|
|
|
gtkLibs1x = import ../development/libraries/gtk-libs-1.x {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv x11 libtiff libjpeg libpng;
|
2003-11-06 17:28:57 +01:00
|
|
|
};
|
|
|
|
|
2004-01-21 10:34:19 +01:00
|
|
|
audiofile = (import ../development/libraries/audiofile) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2004-04-05 15:34:13 +02:00
|
|
|
gnome = import ../development/libraries/gnome {
|
|
|
|
inherit fetchurl stdenv pkgconfig audiofile
|
2004-09-21 17:31:23 +02:00
|
|
|
flex bison popt perl zlib libxml2 bzip2
|
|
|
|
perlXMLParser;
|
2004-04-05 16:09:01 +02:00
|
|
|
gtkLibs = gtkLibs22;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2004-09-21 17:31:23 +02:00
|
|
|
wxGTK = (import ../development/libraries/wxGTK-2.5) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama;
|
|
|
|
};
|
|
|
|
|
|
|
|
wxGTK24 = (import ../development/libraries/wxGTK) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
2004-04-05 16:09:01 +02:00
|
|
|
inherit (gtkLibs22) gtk;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
gnet = (import ../development/libraries/gnet) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
2003-11-05 13:17:48 +01:00
|
|
|
|
2003-12-03 22:58:16 +01:00
|
|
|
libdvdcss = (import ../development/libraries/libdvdcss) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdread = (import ../development/libraries/libdvdread) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv libdvdcss;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdplay = (import ../development/libraries/libdvdplay) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv libdvdread;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mpeg2dec = (import ../development/libraries/mpeg2dec) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
a52dec = (import ../development/libraries/a52dec) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
libmad = (import ../development/libraries/libmad) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2004-01-25 09:51:03 +01:00
|
|
|
zvbi = (import ../development/libraries/zvbi) {
|
2004-03-27 22:59:31 +01:00
|
|
|
inherit fetchurl stdenv libpng x11;
|
2004-01-25 09:51:03 +01:00
|
|
|
pngSupport = true;
|
|
|
|
libpng = libpng;
|
|
|
|
};
|
|
|
|
|
2004-06-21 22:41:32 +02:00
|
|
|
rte = (import ../development/libraries/rte) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-03-05 11:13:23 +01:00
|
|
|
ncurses = (import ../development/libraries/ncurses) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-04-05 15:42:41 +02:00
|
|
|
xlibs = (import ../development/libraries/xlibs) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig freetype expat;
|
2004-03-27 22:59:31 +01:00
|
|
|
};
|
|
|
|
|
2004-06-09 19:53:30 +02:00
|
|
|
mesa = (import ../development/libraries/mesa) {
|
|
|
|
inherit fetchurl stdenv xlibs;
|
|
|
|
};
|
|
|
|
|
2004-04-06 19:47:34 +02:00
|
|
|
chmlib = (import ../development/libraries/chmlib) {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
};
|
|
|
|
|
2003-12-21 21:52:13 +01:00
|
|
|
perlBerkeleyDB = (import ../development/perl-modules/BerkeleyDB) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl db4;
|
2003-12-21 21:52:13 +01:00
|
|
|
};
|
|
|
|
|
2004-01-21 10:34:19 +01:00
|
|
|
perlXMLParser = (import ../development/perl-modules/XML-Parser) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl expat;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2004-09-22 12:18:02 +02:00
|
|
|
wxPython = (import ../development/python-modules/wxPython-2.5) {
|
2004-04-02 17:36:14 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig wxGTK python;
|
2004-02-17 20:19:26 +01:00
|
|
|
};
|
|
|
|
|
2004-09-22 12:18:02 +02:00
|
|
|
wxPython24 = (import ../development/python-modules/wxPython) {
|
|
|
|
inherit fetchurl stdenv pkgconfig python;
|
|
|
|
wxGTK = wxGTK24;
|
|
|
|
};
|
|
|
|
|
2004-08-05 15:49:26 +02:00
|
|
|
readline = (import ../development/libraries/readline) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
SDL = (import ../development/libraries/SDL) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
};
|
|
|
|
|
2003-11-06 17:28:57 +01:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
### SERVERS
|
|
|
|
|
|
|
|
apacheHttpd = (import ../servers/http/apache-httpd) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl openssl db4 expat;
|
2003-11-05 13:17:48 +01:00
|
|
|
sslSupport = true;
|
|
|
|
db4Support = true;
|
|
|
|
};
|
|
|
|
|
2003-11-06 13:43:25 +01:00
|
|
|
xfree86 = (import ../servers/x11/xfree86) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv flex bison;
|
2003-11-06 13:43:25 +01:00
|
|
|
buildServer = false;
|
|
|
|
buildClientLibs = true;
|
|
|
|
};
|
|
|
|
|
2004-08-24 13:38:40 +02:00
|
|
|
postgresql = (import ../servers/sql/postgresql) {
|
2004-08-24 14:02:07 +02:00
|
|
|
inherit fetchurl stdenv readline ncurses zlib;
|
2004-08-24 13:38:40 +02:00
|
|
|
jdbcSupport = true;
|
|
|
|
ant = apacheAntBlackdown14;
|
|
|
|
};
|
|
|
|
|
2004-08-30 20:22:14 +02:00
|
|
|
jetty = (import ../servers/http/jetty) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
### OS-SPECIFIC
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 23:25:26 +01:00
|
|
|
|
2003-11-11 16:57:15 +01:00
|
|
|
alsaLib = (import ../os-specific/linux/alsa/library) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-11 16:57:15 +01:00
|
|
|
};
|
|
|
|
|
2004-02-16 11:40:45 +01:00
|
|
|
utillinux = (import ../os-specific/linux/util-linux) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 11:40:45 +01:00
|
|
|
};
|
|
|
|
|
2004-02-16 15:09:55 +01:00
|
|
|
sysvinit = (import ../os-specific/linux/sysvinit) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 15:09:55 +01:00
|
|
|
};
|
|
|
|
|
2004-02-16 15:31:52 +01:00
|
|
|
e2fsprogs = (import ../os-specific/linux/e2fsprogs) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
|
|
|
|
2004-02-19 13:46:35 +01:00
|
|
|
nettools = (import ../os-specific/linux/net-tools) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-30 13:44:51 +02:00
|
|
|
shadowutils = (import ../os-specific/linux/shadow) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-05 21:31:30 +02:00
|
|
|
iputils = (import ../os-specific/linux/iputils) {
|
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
|
|
|
glibc = stdenv.gcc.glibc;
|
|
|
|
};
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
### DATA
|
|
|
|
|
2004-04-08 16:06:15 +02:00
|
|
|
docbook_xml_dtd_42 = (import ../data/sgml+xml/schemas/xml-dtd/docbook-4.2) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
docbook_xml_dtd_43 = (import ../data/sgml+xml/schemas/xml-dtd/docbook-4.3) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv unzip;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2004-04-08 13:49:27 +02:00
|
|
|
docbook_xml_ebnf_dtd = (import ../data/sgml+xml/schemas/xml-dtd/docbook-ebnf) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
docbook_xml_xslt = (import ../data/sgml+xml/stylesheets/xslt/docbook) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
### APPLICATIONS
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2004-10-01 16:28:05 +02:00
|
|
|
subversion = (import ../applications/version-management/subversion-1.0.x) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv openssl db4 expat swig;
|
2003-11-05 13:17:48 +01:00
|
|
|
localServer = true;
|
2003-11-03 17:18:00 +01:00
|
|
|
httpServer = false;
|
2003-11-05 13:17:48 +01:00
|
|
|
sslSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
2003-11-04 09:36:32 +01:00
|
|
|
};
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2004-10-01 16:28:05 +02:00
|
|
|
subversionWithJava = (import ../applications/version-management/subversion-1.1.x) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv openssl db4 expat;
|
2004-08-23 21:23:03 +02:00
|
|
|
swig = swigWithJava;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
javaBindings = true;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
pan = (import ../applications/networking/newsreaders/pan) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig gnet libxml2 perl pcre;
|
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-06 16:24:19 +01:00
|
|
|
spellChecking = false;
|
|
|
|
};
|
|
|
|
|
2003-11-06 17:28:57 +01:00
|
|
|
sylpheed = (import ../applications/networking/mailreaders/sylpheed) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv openssl;
|
2004-04-05 15:42:41 +02:00
|
|
|
inherit (gtkLibs1x) gtk gdkpixbuf;
|
2003-11-06 17:28:57 +01:00
|
|
|
sslSupport = true;
|
|
|
|
imageSupport = true;
|
|
|
|
};
|
|
|
|
|
2004-02-10 19:32:42 +01:00
|
|
|
firefox = (import ../applications/networking/browsers/firefox) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
2004-09-19 16:13:24 +02:00
|
|
|
inherit (xlibs) libXi;
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
|
|
|
|
2004-09-15 13:06:15 +02:00
|
|
|
thunderbird =
|
2004-09-16 14:38:10 +02:00
|
|
|
(import ../build-support/make-symlinks) {
|
|
|
|
inherit stdenv;
|
2004-09-15 13:06:15 +02:00
|
|
|
dir =
|
|
|
|
(import ../applications/networking/mailreaders/thunderbird) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
};
|
2004-09-15 14:52:06 +02:00
|
|
|
files = ["bin/thunderbird" "lib/thunderbird-0.8/icons"];
|
2004-09-15 13:06:15 +02:00
|
|
|
};
|
|
|
|
|
2004-07-26 12:33:58 +02:00
|
|
|
lynx = (import ../applications/networking/browsers/lynx) {
|
|
|
|
inherit fetchurl stdenv ncurses openssl;
|
|
|
|
};
|
|
|
|
|
2003-11-11 16:01:07 +01:00
|
|
|
MPlayer = (import ../applications/video/MPlayer) {
|
2004-04-01 20:06:09 +02:00
|
|
|
inherit fetchurl stdenv freetype x11 zlib;
|
2004-05-01 20:17:56 +02:00
|
|
|
inherit (xlibs) libXv;
|
2003-11-11 16:57:15 +01:00
|
|
|
alsaSupport = true;
|
|
|
|
alsa = alsaLib;
|
2003-11-11 16:01:07 +01:00
|
|
|
};
|
|
|
|
|
2003-11-13 14:11:38 +01:00
|
|
|
MPlayerPlugin = (import ../applications/video/mplayerplug-in) {
|
2004-03-27 22:59:31 +01:00
|
|
|
inherit fetchurl stdenv x11;
|
2003-11-13 14:11:38 +01:00
|
|
|
};
|
|
|
|
|
2003-12-03 22:58:16 +01:00
|
|
|
vlc = (import ../applications/video/vlc) {
|
2004-09-21 17:31:23 +02:00
|
|
|
inherit fetchurl stdenv libdvdcss wxGTK libdvdplay
|
2004-03-27 22:59:31 +01:00
|
|
|
mpeg2dec a52dec libmad x11;
|
2004-05-01 20:17:56 +02:00
|
|
|
inherit (xlibs) libXv;
|
2003-12-03 22:58:16 +01:00
|
|
|
alsa = alsaLib;
|
|
|
|
};
|
|
|
|
|
2004-01-21 10:34:19 +01:00
|
|
|
zapping = (import ../applications/video/zapping) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig perl python
|
2004-06-21 20:13:45 +02:00
|
|
|
scrollkeeper gettext zvbi libjpeg libpng x11
|
2004-06-21 22:41:32 +02:00
|
|
|
rte perlXMLParser;
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit (gnome) libgnomeui libglade esound;
|
2004-06-21 20:13:45 +02:00
|
|
|
inherit (xlibs) libXv libXmu libXext;
|
2004-01-25 09:51:03 +01:00
|
|
|
teletextSupport = true;
|
|
|
|
jpegSupport = true;
|
|
|
|
pngSupport = true;
|
2004-06-21 22:41:32 +02:00
|
|
|
recordingSupport = true;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2003-11-11 17:13:13 +01:00
|
|
|
gqview = (import ../applications/graphics/gqview) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig libpng;
|
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-11 17:13:13 +01:00
|
|
|
};
|
|
|
|
|
2003-11-27 13:09:22 +01:00
|
|
|
hello = (import ../applications/misc/hello) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-27 13:09:22 +01:00
|
|
|
};
|
|
|
|
|
2004-04-06 19:47:34 +02:00
|
|
|
xchm = (import ../applications/misc/xchm) {
|
|
|
|
inherit fetchurl stdenv wxGTK chmlib;
|
|
|
|
};
|
|
|
|
|
2004-09-25 22:27:40 +02:00
|
|
|
acroread = (import ../applications/misc/acrobat-reader) {
|
|
|
|
inherit fetchurl stdenv patchelf;
|
|
|
|
inherit (xlibs) libXt libXp libXext libX11;
|
|
|
|
};
|
|
|
|
|
2003-12-08 12:56:50 +01:00
|
|
|
nxml = (import ../applications/editors/emacs/modes/nxml) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-08 12:56:50 +01:00
|
|
|
};
|
|
|
|
|
2004-07-30 14:57:27 +02:00
|
|
|
vim = (import ../applications/editors/vim) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2004-02-13 15:42:28 +01:00
|
|
|
|
2004-07-30 15:38:10 +02:00
|
|
|
|
2004-04-01 18:02:53 +02:00
|
|
|
### GAMES
|
|
|
|
|
|
|
|
zoom = (import ../games/zoom) {
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit fetchurl stdenv perl expat freetype;
|
|
|
|
inherit (xlibs) xlibs;
|
2004-04-01 18:02:53 +02:00
|
|
|
};
|
|
|
|
|
2004-06-09 19:59:46 +02:00
|
|
|
quake3demo = (import ../games/quake3demo) {
|
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
2004-06-09 20:06:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
ut2004demo = (import ../games/ut2004demo) {
|
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
|
|
|
};
|
2004-06-09 19:59:46 +02:00
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
generator = (import ../games/generator) {
|
|
|
|
inherit fetchurl stdenv SDL nasm;
|
|
|
|
inherit (gtkLibs1x) gtk;
|
|
|
|
};
|
|
|
|
|
2004-04-01 18:02:53 +02:00
|
|
|
|
2004-02-13 15:42:28 +01:00
|
|
|
### MISC
|
|
|
|
|
|
|
|
uml = (import ../misc/uml) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv perl;
|
2004-02-13 15:42:28 +01:00
|
|
|
m4 = gnum4;
|
2004-09-27 21:50:58 +02:00
|
|
|
gcc = gcc33;
|
2004-02-13 15:42:28 +01:00
|
|
|
};
|
|
|
|
|
2004-02-18 17:22:31 +01:00
|
|
|
umlutilities = (import ../misc/uml-utilities) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-02-16 16:40:55 +01:00
|
|
|
nix = (import ../misc/nix) {
|
2004-03-31 12:19:24 +02:00
|
|
|
inherit fetchurl stdenv aterm perl;
|
2004-04-08 16:17:47 +02:00
|
|
|
curl = bootCurl; /* !!! ugly */
|
2004-02-16 17:54:01 +01:00
|
|
|
bdb = db4;
|
2004-02-16 16:40:55 +01:00
|
|
|
};
|
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|