2003-11-02 09:42:19 -08: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 10:23:18 -07:00
|
|
|
{ stdenv, bootCurl, noSysDirs ? true
|
|
|
|
, gccWithCC ? true
|
|
|
|
, gccWithProfiling ? true
|
|
|
|
}:
|
2004-03-11 09:26:14 -08:00
|
|
|
|
|
|
|
rec {
|
2003-11-03 02:22:00 -08:00
|
|
|
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit stdenv;
|
2003-11-25 10:02:05 -08:00
|
|
|
|
|
|
|
|
2004-03-27 13:59:31 -08:00
|
|
|
### Symbolic names.
|
|
|
|
|
2004-04-05 06:34:13 -07:00
|
|
|
x11 = xlibs.xlibs; # !!! should be `x11ClientLibs' or some such
|
2004-03-27 13:59:31 -08:00
|
|
|
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
### BUILD SUPPORT
|
|
|
|
|
2003-11-03 02:22:00 -08:00
|
|
|
fetchurl = (import ../build-support/fetchurl) {
|
2004-02-02 13:40:18 -08: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 08:53:04 -08:00
|
|
|
curl = bootCurl;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-25 10:02:05 -08:00
|
|
|
fetchsvn = (import ../build-support/fetchsvn) {
|
2004-04-14 03:55:33 -07:00
|
|
|
inherit stdenv subversion nix;
|
2003-11-25 10:02:05 -08:00
|
|
|
};
|
|
|
|
|
2005-04-22 05:14:55 -07:00
|
|
|
substituter = ../build-support/substitute/substitute.sh;
|
|
|
|
|
2005-04-22 11:26:04 -07:00
|
|
|
makeWrapper = ../build-support/make-wrapper/make-wrapper.sh;
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
|
|
|
|
### TOOLS
|
|
|
|
|
|
|
|
coreutils = (import ../tools/misc/coreutils) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
findutils = (import ../tools/misc/findutils) {
|
2005-07-12 07:03:33 -07:00
|
|
|
inherit fetchurl stdenv coreutils;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2005-08-23 06:48:43 -07:00
|
|
|
findutilsWrapper = (import ../tools/misc/findutils-wrapper) {
|
|
|
|
inherit stdenv findutils;
|
|
|
|
};
|
|
|
|
|
2003-12-02 04:54:21 -08:00
|
|
|
getopt = (import ../tools/misc/getopt) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-02 04:54:21 -08:00
|
|
|
};
|
|
|
|
|
2005-07-21 04:26:51 -07:00
|
|
|
grub = (import ../tools/misc/grub) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-13 12:06:03 -07:00
|
|
|
};
|
|
|
|
|
2005-08-23 06:48:43 -07:00
|
|
|
grubWrapper = (import ../tools/misc/grub-wrapper) {
|
2005-08-13 12:06:03 -07:00
|
|
|
inherit stdenv grub diffutils gnused gnugrep;
|
2005-07-21 04:26:51 -07:00
|
|
|
};
|
|
|
|
|
2005-07-31 13:11:36 -07:00
|
|
|
parted = (import ../tools/misc/parted) {
|
2005-07-31 13:53:53 -07:00
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline;
|
2005-07-31 13:11:36 -07:00
|
|
|
};
|
|
|
|
|
2005-07-31 15:21:04 -07:00
|
|
|
qtparted = (import ../tools/misc/qtparted) {
|
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline parted zlib qt3;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
};
|
2005-07-31 13:11:36 -07:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
diffutils = (import ../tools/text/diffutils) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv coreutils;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 10:14:24 -08:00
|
|
|
|
2004-02-13 06:42:28 -08:00
|
|
|
gnupatch = (import ../tools/text/gnupatch) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-09 07:33:14 -07:00
|
|
|
patch = if stdenv.system == "powerpc-darwin" then null else gnupatch;
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
gnused = (import ../tools/text/gnused) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
gnugrep = (import ../tools/text/gnugrep) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv pcre;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
gawk = (import ../tools/text/gawk) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 10:14:24 -08:00
|
|
|
|
2005-08-21 06:59:04 -07:00
|
|
|
groff = (import ../tools/text/groff) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-06-03 10:16:16 -07:00
|
|
|
enscript = (import ../tools/text/enscript) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
ed = (import ../tools/text/ed) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2004-08-20 15:06:36 -07:00
|
|
|
xpf = (import ../tools/text/xml/xpf) {
|
2005-06-20 13:35:07 -07:00
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
|
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
pythonSupport = true;
|
|
|
|
};
|
2004-08-20 15:06:36 -07:00
|
|
|
};
|
|
|
|
|
2004-09-26 06:03:59 -07:00
|
|
|
jing_tools = (import ../tools/text/xml/jing/jing-script.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
j2re = blackdown;
|
|
|
|
};
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
gnutar = (import ../tools/archivers/gnutar) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-07 03:18:47 -08:00
|
|
|
zip = (import ../tools/archivers/zip) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-07 03:18:47 -08:00
|
|
|
};
|
|
|
|
|
2005-04-11 01:26:36 -07:00
|
|
|
unzip = import ../tools/archivers/unzip {
|
2005-03-21 06:48:48 -08:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
gzip = (import ../tools/compression/gzip) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
bzip2 = (import ../tools/compression/bzip2) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2004-11-29 11:35:42 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
zdelta = (import ../tools/compression/zdelta) {
|
|
|
|
inherit fetchurl stdenv;
|
2004-11-29 13:17:29 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
bsdiff = (import ../tools/compression/bsdiff) {
|
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:21:30 -08:00
|
|
|
};
|
|
|
|
|
2003-12-23 12:51:58 -08:00
|
|
|
which = (import ../tools/system/which) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-23 12:51:58 -08:00
|
|
|
};
|
|
|
|
|
2003-11-04 00:44:46 -08:00
|
|
|
wget = (import ../tools/networking/wget) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-04 00:44:46 -08: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 08:53:04 -08:00
|
|
|
curl = (import ../tools/networking/curl) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2003-12-14 12:36:43 -08:00
|
|
|
par2cmdline = (import ../tools/networking/par2cmdline) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-14 12:36:43 -08:00
|
|
|
};
|
|
|
|
|
2004-01-25 00:59:20 -08:00
|
|
|
cksfv = (import ../tools/networking/cksfv) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-25 00:59:20 -08:00
|
|
|
};
|
|
|
|
|
2004-02-17 12:03:12 -08:00
|
|
|
bittorrent = (import ../tools/networking/bittorrent) {
|
2005-04-22 11:26:04 -07:00
|
|
|
inherit fetchurl stdenv python pygtk makeWrapper;
|
2004-02-17 12:03:12 -08:00
|
|
|
};
|
|
|
|
|
2005-08-21 06:59:04 -07:00
|
|
|
dhcp = (import ../tools/networking/dhcp) {
|
2005-08-21 09:11:25 -07:00
|
|
|
inherit fetchurl stdenv groff;
|
2005-08-21 06:59:04 -07:00
|
|
|
};
|
|
|
|
|
2005-08-21 12:46:16 -07:00
|
|
|
dhcpWrapper = (import ../tools/networking/dhcp-wrapper) {
|
|
|
|
inherit stdenv dhcp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-12-10 01:51:32 -08:00
|
|
|
graphviz = (import ../tools/graphics/graphviz) {
|
2005-08-05 04:52:44 -07:00
|
|
|
inherit fetchurl stdenv libpng libjpeg expat x11 yacc libtool;
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit (xlibs) libXaw;
|
2003-12-10 01:51:32 -08:00
|
|
|
};
|
|
|
|
|
2005-05-06 01:54:01 -07:00
|
|
|
gnuplot = (import ../tools/graphics/gnuplot) {
|
|
|
|
inherit fetchurl stdenv zlib libpng texinfo;
|
|
|
|
};
|
|
|
|
|
2005-03-11 02:46:20 -08:00
|
|
|
exif = (import ../tools/graphics/exif) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libexif popt;
|
|
|
|
};
|
|
|
|
|
2004-07-28 03:49:55 -07:00
|
|
|
hevea = (import ../tools/typesetting/hevea) {
|
|
|
|
inherit fetchurl stdenv ocaml;
|
|
|
|
};
|
2003-11-03 10:21:30 -08:00
|
|
|
|
2005-08-13 11:12:10 -07:00
|
|
|
xmlroff = (import ../tools/typesetting/xmlroff) {
|
2005-08-13 14:35:49 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
|
|
|
|
inherit (gtkLibs) glib pango gtk;
|
|
|
|
inherit (gnome) libgnomeprint;
|
|
|
|
inherit pangoxsl;
|
2005-08-13 11:12:10 -07:00
|
|
|
};
|
|
|
|
|
2004-07-30 09:15:55 -07:00
|
|
|
less = (import ../tools/misc/less) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2005-03-09 09:49:19 -08:00
|
|
|
file = (import ../tools/misc/file) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-07-30 09:15:55 -07:00
|
|
|
screen = (import ../tools/misc/screen) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2004-08-02 05:27:01 -07:00
|
|
|
};
|
2004-07-30 09:15:55 -07:00
|
|
|
|
2004-09-22 12:31:39 -07:00
|
|
|
xsel = (import ../tools/misc/xsel) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
};
|
|
|
|
|
2005-01-21 16:19:27 -08:00
|
|
|
xmltv = import ../tools/misc/xmltv {
|
|
|
|
inherit fetchurl perl perlTermReadKey perlXMLTwig perlXMLWriter
|
|
|
|
perlDateManip perlHTMLTree perlHTMLParser perlHTMLTagset
|
|
|
|
perlURI perlLWP;
|
|
|
|
};
|
|
|
|
|
2004-08-02 05:27:01 -07:00
|
|
|
openssh = (import ../tools/networking/openssh) {
|
|
|
|
inherit fetchurl stdenv zlib openssl;
|
2004-07-30 09:15:55 -07:00
|
|
|
};
|
2004-08-02 05:27:01 -07:00
|
|
|
|
2004-08-03 08:41:08 -07:00
|
|
|
mktemp = (import ../tools/security/mktemp) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-06 03:01:15 -07:00
|
|
|
nmap = (import ../tools/security/nmap) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-16 07:13:30 -08:00
|
|
|
mjpegtools = (import ../tools/video/mjpegtools) {
|
2005-03-18 00:10:35 -08:00
|
|
|
inherit fetchurl stdenv libjpeg;
|
|
|
|
inherit (xlibs) libX11;
|
2005-03-16 07:13:30 -08:00
|
|
|
};
|
2005-07-29 03:06:49 -07:00
|
|
|
|
|
|
|
xauth = (import ../tools/X11/xauth) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (xlibs) libX11 libXau libXext libXmu;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
### SHELLS
|
|
|
|
|
2003-11-03 02:22:00 -08:00
|
|
|
bash = (import ../shells/bash) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
|
|
|
|
### DEVELOPMENT
|
|
|
|
|
|
|
|
binutils = (import ../development/tools/misc/binutils) {
|
2004-03-11 09:26:14 -08:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2004-09-25 12:32:23 -07:00
|
|
|
patchelf = (import ../development/tools/misc/patchelf) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
gnum4 = (import ../development/tools/misc/gnum4) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-25 10:02:05 -08:00
|
|
|
autoconf = (import ../development/tools/misc/autoconf) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-25 10:02:05 -08:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
|
|
|
automake = (import ../development/tools/misc/automake) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
2003-11-25 10:02:05 -08:00
|
|
|
};
|
|
|
|
|
2005-03-17 01:18:49 -08:00
|
|
|
automake19x = (import ../development/tools/misc/automake/automake-1.9.x.nix) {
|
2005-01-26 01:47:20 -08:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
|
|
|
};
|
|
|
|
|
2003-12-23 12:51:58 -08:00
|
|
|
libtool = (import ../development/tools/misc/libtool) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-12-23 12:51:58 -08:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
pkgconfig = (import ../development/tools/misc/pkgconfig) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2005-04-27 09:22:43 -07:00
|
|
|
pkgconfig017x = (import ../development/tools/misc/pkgconfig/pkgconfig-0.17.2.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-04 03:11:50 -07:00
|
|
|
strace = (import ../development/tools/misc/strace) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-12-21 12:52:13 -08:00
|
|
|
swig = (import ../development/tools/misc/swig) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl python;
|
2003-12-21 12:52:13 -08:00
|
|
|
perlSupport = true;
|
|
|
|
pythonSupport = true;
|
2004-08-23 12:23:03 -07:00
|
|
|
javaSupport = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
swigWithJava = (import ../development/tools/misc/swig) {
|
2004-09-08 07:39:30 -07:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
j2sdk = blackdown;
|
2004-08-23 12:23:03 -07:00
|
|
|
perlSupport = false;
|
|
|
|
pythonSupport = false;
|
|
|
|
javaSupport = true;
|
2003-12-21 12:52:13 -08:00
|
|
|
};
|
|
|
|
|
2004-01-21 06:50:18 -08:00
|
|
|
valgrind = (import ../development/tools/misc/valgrind) {
|
2004-04-22 07:38:43 -07:00
|
|
|
inherit fetchurl stdenv perl;
|
2004-01-21 06:50:18 -08:00
|
|
|
};
|
|
|
|
|
2004-03-05 02:13:23 -08:00
|
|
|
texinfo = (import ../development/tools/misc/texinfo) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
|
|
|
gperf = (import ../development/tools/misc/gperf) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-10-22 07:34:58 -07:00
|
|
|
lcov = (import ../development/tools/misc/lcov) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
|
|
|
|
2005-05-18 14:15:29 -07:00
|
|
|
help2man = (import ../development/tools/misc/help2man) {
|
|
|
|
inherit fetchurl stdenv perl gettext perlLocaleGettext;
|
|
|
|
};
|
|
|
|
|
2004-08-05 06:05:38 -07:00
|
|
|
octave = (import ../development/interpreters/octave) {
|
2005-03-16 07:13:30 -08:00
|
|
|
inherit fetchurl stdenv readline ncurses g77 perl flex;
|
2004-03-05 02:13:23 -08:00
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
gnumake = (import ../development/tools/build-managers/gnumake) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 04:43:25 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
bison = (import ../development/tools/parsing/bison) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 04:43:25 -08:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2004-09-22 01:49:22 -07:00
|
|
|
yacc = bison;
|
|
|
|
|
2004-01-30 07:52:17 -08:00
|
|
|
bisonnew = (import ../development/tools/parsing/bison/bison-new.nix) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-30 07:52:17 -08:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 04:43:25 -08:00
|
|
|
flex = (import ../development/tools/parsing/flex) {
|
2004-09-22 01:49:22 -07:00
|
|
|
inherit fetchurl stdenv yacc;
|
2003-11-06 04:43:25 -08:00
|
|
|
};
|
|
|
|
|
2004-01-30 02:10:06 -08:00
|
|
|
flexnew = (import ../development/tools/parsing/flex/flex-new.nix) {
|
2004-09-22 01:49:22 -07:00
|
|
|
inherit fetchurl stdenv yacc;
|
2004-01-30 09:23:34 -08:00
|
|
|
m4 = gnum4;
|
2004-01-30 02:10:06 -08:00
|
|
|
};
|
|
|
|
|
2004-09-18 10:23:18 -07:00
|
|
|
gcc = (import ../development/compilers/gcc-3.4) {
|
2004-03-11 09:26:14 -08:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-09-18 10:23:18 -07:00
|
|
|
langCC = gccWithCC;
|
|
|
|
profiledCompiler = gccWithProfiling;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2005-02-23 05:18:53 -08:00
|
|
|
gccWrapped = stdenv.gcc;
|
2004-09-21 08:31:23 -07:00
|
|
|
|
2004-11-08 06:03:10 -08:00
|
|
|
gcc_static = (import ../development/compilers/gcc-static-3.4) {
|
2004-09-02 06:56:36 -07:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-09-18 14:20:15 -07:00
|
|
|
gcc33 = (import ../build-support/gcc-wrapper) {
|
2004-06-29 01:25:55 -07:00
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2004-09-18 14:20:15 -07:00
|
|
|
gcc = (import ../development/compilers/gcc-3.3) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-06-29 01:25:55 -07:00
|
|
|
};
|
2004-09-18 14:20:15 -07:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-06-29 01:25:55 -07:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2005-04-22 05:14:55 -07:00
|
|
|
gcc40 = (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = (import ../development/compilers/gcc-4.0) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-03 03:36:29 -07:00
|
|
|
gcc295 = (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = (import ../development/compilers/gcc-2.95) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-08-03 03:36:29 -07:00
|
|
|
};
|
2004-09-18 14:20:15 -07:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-08-03 03:36:29 -07:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2004-03-08 08:02:46 -08:00
|
|
|
g77 = (import ../build-support/gcc-wrapper) {
|
2004-03-11 09:26:14 -08:00
|
|
|
name = "g77";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2004-09-18 10:23:18 -07:00
|
|
|
gcc = (import ../development/compilers/gcc-3.3) {
|
2004-03-11 09:26:14 -08:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-03-05 02:13:23 -08:00
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
|
|
|
};
|
2004-09-18 14:20:15 -07:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-03-11 09:26:14 -08:00
|
|
|
inherit stdenv;
|
2004-03-05 02:13:23 -08:00
|
|
|
};
|
|
|
|
|
2005-08-17 07:29:04 -07:00
|
|
|
/*
|
|
|
|
gcj = (import ../build-support/gcc-wrapper/default2.nix) {
|
|
|
|
name = "gcj";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = (import ../development/compilers/gcc-4.0) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langJava = true;
|
|
|
|
langCC = false;
|
|
|
|
langC = false;
|
|
|
|
langF77 = false;
|
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2005-08-12 10:30:45 -07:00
|
|
|
opencxx = (import ../development/compilers/opencxx) {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
gcc = gcc33;
|
|
|
|
};
|
|
|
|
|
2004-02-12 05:18:24 -08:00
|
|
|
jikes = (import ../development/compilers/jikes) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 04:17:48 -08:00
|
|
|
};
|
|
|
|
|
2004-08-24 02:12:01 -07:00
|
|
|
blackdown = (import ../development/compilers/blackdown) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-02-12 05:18:24 -08:00
|
|
|
j2sdk = (import ../development/compilers/j2sdk) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-21 12:52:13 -08:00
|
|
|
};
|
|
|
|
|
2004-05-12 08:06:23 -07:00
|
|
|
j2sdk15 = (import ../development/compilers/j2sdk/default-1.5.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-25 10:11:52 -07:00
|
|
|
saxon = (import ../development/libraries/java/saxon) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-08-25 10:18:19 -07:00
|
|
|
saxonb = (import ../development/libraries/java/saxon/default8.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-08-10 04:07:50 -07: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 06:57:38 -07:00
|
|
|
jclasslib = (import ../development/tools/java/jclasslib) {
|
2004-08-20 15:48:59 -07:00
|
|
|
inherit fetchurl stdenv xpf;
|
2004-08-19 06:57:38 -07:00
|
|
|
j2re = j2sdk15;
|
2004-08-24 04:38:40 -07:00
|
|
|
ant = apacheAnt14;
|
2004-08-19 06:57:38 -07:00
|
|
|
};
|
|
|
|
|
2004-07-28 03:08:31 -07:00
|
|
|
ocaml = (import ../development/compilers/ocaml) {
|
2004-07-28 04:16:25 -07:00
|
|
|
inherit fetchurl stdenv x11;
|
2004-07-16 15:58:15 -07:00
|
|
|
};
|
|
|
|
|
2005-02-26 15:45:19 -08:00
|
|
|
mono = (import ../development/compilers/mono) {
|
|
|
|
inherit fetchurl stdenv bison pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2005-03-03 09:19:58 -08:00
|
|
|
monoDLLFixer = import ../build-support/mono-dll-fixer {
|
|
|
|
inherit stdenv perl;
|
|
|
|
};
|
|
|
|
|
2004-08-10 04:07:50 -07:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt) {
|
2005-08-17 14:40:11 -07:00
|
|
|
inherit fetchurl pkgconfig stdenv sdf;
|
|
|
|
|
|
|
|
aterm = (import ../development/libraries/aterm/aterm-2.3.1.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-01-14 13:26:18 -08:00
|
|
|
};
|
|
|
|
|
2005-06-30 09:54:25 -07:00
|
|
|
strategoxtUtils = (import ../development/compilers/strategoxt/utils) {
|
2005-08-17 14:40:11 -07:00
|
|
|
inherit fetchurl pkgconfig stdenv sdf strategoxt;
|
|
|
|
|
|
|
|
aterm = (import ../development/libraries/aterm/aterm-2.3.1.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-06-30 09:54:25 -07:00
|
|
|
};
|
|
|
|
|
2004-08-17 04:53:31 -07:00
|
|
|
bibtextools = (import ../tools/typesetting/bibtex-tools) {
|
2005-05-31 01:11:54 -07:00
|
|
|
inherit fetchurl stdenv aterm strategoxt tetex hevea sdf;
|
2004-08-17 04:53:31 -07:00
|
|
|
};
|
|
|
|
|
2005-05-18 09:50:14 -07:00
|
|
|
# xdoc = (import ../development/tools/documentation/xdoc) {
|
|
|
|
# inherit fetchurl stdenv aterm strategoxt subversion graphviz;
|
|
|
|
# sdf = sdf_23;
|
|
|
|
# };
|
2004-09-13 01:45:50 -07:00
|
|
|
|
2004-08-03 08:41:08 -07:00
|
|
|
#tiger = (import ../development/compilers/tiger) {
|
|
|
|
# inherit fetchurl stdenv aterm strategoxt;
|
|
|
|
# sdf = sdf_22;
|
|
|
|
#};
|
2004-02-12 05:18:24 -08: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 07:23:05 -07: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 11:12:51 -07:00
|
|
|
nasm = (import ../development/compilers/nasm) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-07-01 09:57:31 -07:00
|
|
|
realPerl = (import ../development/interpreters/perl) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 14:04:09 -08:00
|
|
|
};
|
|
|
|
|
2004-07-01 09:57:31 -07:00
|
|
|
sysPerl = (import ../development/interpreters/sys-perl) {
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2005-05-10 05:59:28 -07:00
|
|
|
perl = if stdenv.system != "i686-linux" then sysPerl else realPerl;
|
2004-07-01 09:57:31 -07:00
|
|
|
|
2004-02-12 05:18:24 -08:00
|
|
|
python = (import ../development/interpreters/python) {
|
2004-02-17 12:03:12 -08:00
|
|
|
inherit fetchurl stdenv zlib;
|
2004-01-24 14:50:47 -08:00
|
|
|
};
|
|
|
|
|
2005-05-04 16:36:28 -07:00
|
|
|
ruby = (import ../development/interpreters/ruby) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-11-19 09:47:17 -08:00
|
|
|
dylan = (import ../development/compilers/gwydion-dylan) {
|
|
|
|
inherit fetchurl stdenv perl boehmgc yacc flex readline;
|
|
|
|
dylan =
|
|
|
|
(import ../development/compilers/gwydion-dylan/binary.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2004-08-23 03:44:21 -07:00
|
|
|
clisp = (import ../development/interpreters/clisp) {
|
|
|
|
inherit fetchurl stdenv libsigsegv gettext;
|
|
|
|
};
|
|
|
|
|
2005-02-26 15:45:19 -08:00
|
|
|
guile = (import ../development/interpreters/guile) {
|
|
|
|
inherit fetchurl stdenv ncurses readline;
|
|
|
|
};
|
|
|
|
|
2004-02-12 05:18:24 -08:00
|
|
|
j2re = (import ../development/interpreters/j2re) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 15:46:00 -08:00
|
|
|
};
|
|
|
|
|
2004-08-23 10:06:50 -07:00
|
|
|
kaffe = (import ../development/interpreters/kaffe) {
|
|
|
|
inherit fetchurl stdenv jikes alsaLib xlibs;
|
|
|
|
};
|
|
|
|
|
2004-08-24 04:38:40 -07:00
|
|
|
apacheAnt14 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-10 04:07:50 -07:00
|
|
|
inherit fetchurl stdenv j2sdk;
|
2004-08-24 04:26:26 -07:00
|
|
|
name = "ant-j2sdk-1.4.2";
|
2004-08-10 04:07:50 -07:00
|
|
|
};
|
|
|
|
|
2004-08-24 04:38:40 -07:00
|
|
|
apacheAntBlackdown14 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-24 04:26:26 -07:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
j2sdk = blackdown;
|
2005-03-15 07:16:40 -08:00
|
|
|
name = "ant-blackdown-1.4.2";
|
2004-08-24 04:26:26 -07:00
|
|
|
};
|
|
|
|
|
2004-08-24 04:38:40 -07:00
|
|
|
apacheAnt15 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-24 04:26:26 -07:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
name = "ant-j2sdk-1.5.0";
|
|
|
|
j2sdk = j2sdk15;
|
|
|
|
};
|
2004-08-20 03:14:55 -07:00
|
|
|
|
|
|
|
tomcat5 = (import ../servers/http/tomcat) {
|
2004-08-25 02:33:43 -07:00
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
j2sdk = blackdown;
|
2004-01-24 16:50:00 -08:00
|
|
|
};
|
|
|
|
|
2005-05-09 08:56:34 -07:00
|
|
|
cil = (import ../development/libraries/cil) {
|
|
|
|
inherit stdenv fetchurl ocaml perl;
|
|
|
|
};
|
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
pcre = (import ../development/libraries/pcre) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 09:42:19 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
glibc = (import ../development/libraries/glibc) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
2004-09-18 14:20:15 -07:00
|
|
|
installLocales = true;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 14:25:26 -08:00
|
|
|
|
2003-11-03 10:21:30 -08:00
|
|
|
aterm = (import ../development/libraries/aterm) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 14:25:26 -08:00
|
|
|
|
2005-05-18 09:50:14 -07:00
|
|
|
sdf = (import ../development/tools/parsing/sdf) {
|
2005-08-17 11:39:04 -07:00
|
|
|
inherit fetchurl stdenv aterm getopt pkgconfig;
|
2004-01-22 11:09:49 -08:00
|
|
|
};
|
|
|
|
|
2003-11-05 04:17:48 -08:00
|
|
|
expat = (import ../development/libraries/expat) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 04:17:48 -08:00
|
|
|
};
|
|
|
|
|
2005-01-19 13:12:46 -08:00
|
|
|
libcdaudio = (import ../development/libraries/libcdaudio) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-01-19 13:48:45 -08:00
|
|
|
libogg = (import ../development/libraries/libogg) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
libvorbis = (import ../development/libraries/libvorbis) {
|
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
|
|
|
|
2005-02-16 08:18:43 -08:00
|
|
|
libtheora = (import ../development/libraries/libtheora) {
|
|
|
|
inherit fetchurl stdenv libogg libvorbis;
|
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
2004-08-19 08:28:48 -07:00
|
|
|
inherit fetchurl stdenv zlib python;
|
2005-06-17 13:21:29 -07:00
|
|
|
# pythonSupport = stdenv.system == "i686-linux";
|
|
|
|
pythonSupport = false;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2003-11-25 10:02:05 -08:00
|
|
|
libxslt = (import ../development/libraries/libxslt) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv libxml2;
|
2003-11-25 10:02:05 -08:00
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
gettext = (import ../development/libraries/gettext) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2003-11-05 04:17:48 -08:00
|
|
|
db4 = (import ../development/libraries/db4) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 04:17:48 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
openssl = (import ../development/libraries/openssl) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-05 04:17:48 -08:00
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
freetype = (import ../development/libraries/freetype) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2004-09-18 10:58:42 -07:00
|
|
|
zlib = (import ../development/libraries/zlib) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 07:24:19 -08:00
|
|
|
|
|
|
|
libjpeg = (import ../development/libraries/libjpeg) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
libtiff = (import ../development/libraries/libtiff) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv zlib libjpeg;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
libpng = (import ../development/libraries/libpng) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv zlib;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2004-08-23 02:35:36 -07:00
|
|
|
libsigsegv = (import ../development/libraries/libsigsegv) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 02:46:20 -08:00
|
|
|
libexif = (import ../development/libraries/libexif) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 02:55:21 -08:00
|
|
|
sqlite = (import ../development/libraries/sqlite) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 03:02:31 -08:00
|
|
|
lcms = (import ../development/libraries/lcms) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 03:08:38 -08:00
|
|
|
libgphoto2 = (import ../development/libraries/libgphoto2) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-01-21 01:34:19 -08:00
|
|
|
popt = (import ../development/libraries/popt) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv gettext;
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
2005-02-15 08:22:20 -08:00
|
|
|
gtkLibs = gtkLibs26;
|
|
|
|
|
|
|
|
gtkLibs26 = import ../development/libraries/gtk-libs-2.6 {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
|
|
|
|
2005-02-26 15:45:19 -08:00
|
|
|
gtkLibs24 = import ../development/libraries/gtk-libs-2.4 {
|
2005-02-15 08:22:20 -08:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
|
|
|
};
|
2004-04-05 07:09:01 -07:00
|
|
|
gtkLibs22 = import ../development/libraries/gtk-libs-2.2 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
|
|
|
};
|
|
|
|
|
2004-04-05 06:42:41 -07:00
|
|
|
gtkLibs1x = import ../development/libraries/gtk-libs-1.x {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv x11 libtiff libjpeg libpng;
|
2003-11-06 08:28:57 -08:00
|
|
|
};
|
|
|
|
|
2005-08-13 14:35:49 -07:00
|
|
|
pangoxsl = (import ../development/libraries/pangoxsl) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib pango;
|
|
|
|
};
|
|
|
|
|
2005-01-19 15:27:35 -08:00
|
|
|
qt3 = import ../development/libraries/qt-3 {
|
2005-01-21 16:19:27 -08:00
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql;
|
2005-01-19 14:51:27 -08:00
|
|
|
inherit (xlibs) libXft libXrender;
|
|
|
|
};
|
|
|
|
|
2005-03-09 09:49:19 -08:00
|
|
|
gtksharp1 = (import ../development/libraries/gtk-sharp-1) {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
|
|
|
|
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeui libgnomeprint
|
2005-06-17 13:00:12 -07:00
|
|
|
libgnomeprintui GConf;
|
2005-03-09 09:49:19 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
gtksharp2 = (import ../development/libraries/gtk-sharp-2) {
|
2005-03-03 09:19:58 -08:00
|
|
|
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
|
2005-02-26 15:45:19 -08:00
|
|
|
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeui libgnomeprint
|
2005-06-17 13:00:12 -07:00
|
|
|
libgnomeprintui GConf gnomepanel;
|
2005-02-26 15:45:19 -08:00
|
|
|
};
|
|
|
|
|
2005-03-08 07:44:23 -08:00
|
|
|
gtksourceviewsharp = import ../development/libraries/gtksourceview-sharp {
|
2005-03-09 09:49:19 -08:00
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
2005-03-08 07:44:23 -08:00
|
|
|
inherit (gnome) gtksourceview;
|
2005-03-09 09:49:19 -08:00
|
|
|
gtksharp = gtksharp2;
|
2005-03-08 07:44:23 -08:00
|
|
|
};
|
|
|
|
|
2005-03-09 09:49:19 -08:00
|
|
|
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
2005-03-08 10:52:35 -08:00
|
|
|
inherit (gnome) gtk;
|
2005-03-09 09:49:19 -08:00
|
|
|
gtksharp = gtksharp2;
|
2005-03-08 10:52:35 -08:00
|
|
|
};
|
|
|
|
|
2004-01-21 01:34:19 -08:00
|
|
|
audiofile = (import ../development/libraries/audiofile) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
2004-04-05 06:34:13 -07:00
|
|
|
gnome = import ../development/libraries/gnome {
|
|
|
|
inherit fetchurl stdenv pkgconfig audiofile
|
2005-06-17 06:52:24 -07:00
|
|
|
flex bison popt zlib libxml2 libxslt
|
2005-03-10 03:36:46 -08:00
|
|
|
perl perlXMLParser docbook_xml_dtd_42 gettext x11
|
2005-02-26 18:16:21 -08:00
|
|
|
libtiff libjpeg libpng gtkLibs;
|
2005-03-08 10:52:35 -08:00
|
|
|
inherit (xlibs) libXmu;
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
2004-09-21 08:31:23 -07: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 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
2004-04-05 07:09:01 -07:00
|
|
|
inherit (gtkLibs22) gtk;
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
gnet = (import ../development/libraries/gnet) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
2003-11-07 03:18:47 -08:00
|
|
|
};
|
2003-11-05 04:17:48 -08:00
|
|
|
|
2003-12-03 13:58:16 -08:00
|
|
|
libdvdcss = (import ../development/libraries/libdvdcss) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 13:58:16 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdread = (import ../development/libraries/libdvdread) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv libdvdcss;
|
2003-12-03 13:58:16 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdplay = (import ../development/libraries/libdvdplay) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv libdvdread;
|
2003-12-03 13:58:16 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
mpeg2dec = (import ../development/libraries/mpeg2dec) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 13:58:16 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
a52dec = (import ../development/libraries/a52dec) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 13:58:16 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
libmad = (import ../development/libraries/libmad) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 13:58:16 -08:00
|
|
|
};
|
|
|
|
|
2004-01-25 00:51:03 -08:00
|
|
|
zvbi = (import ../development/libraries/zvbi) {
|
2004-03-27 13:59:31 -08:00
|
|
|
inherit fetchurl stdenv libpng x11;
|
2004-01-25 00:51:03 -08:00
|
|
|
pngSupport = true;
|
|
|
|
};
|
|
|
|
|
2004-06-21 13:41:32 -07:00
|
|
|
rte = (import ../development/libraries/rte) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-12-10 15:16:23 -08:00
|
|
|
xineLib = (import ../development/libraries/xine-lib) {
|
|
|
|
inherit fetchurl stdenv zlib x11 libdvdcss alsaLib;
|
|
|
|
inherit (xlibs) libXv libXinerama;
|
|
|
|
};
|
|
|
|
|
2004-03-05 02:13:23 -08:00
|
|
|
ncurses = (import ../development/libraries/ncurses) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-04-05 06:42:41 -07:00
|
|
|
xlibs = (import ../development/libraries/xlibs) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig freetype expat;
|
2004-03-27 13:59:31 -08:00
|
|
|
};
|
|
|
|
|
2004-06-09 10:53:30 -07:00
|
|
|
mesa = (import ../development/libraries/mesa) {
|
|
|
|
inherit fetchurl stdenv xlibs;
|
|
|
|
};
|
|
|
|
|
2004-04-06 10:47:34 -07:00
|
|
|
chmlib = (import ../development/libraries/chmlib) {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
};
|
|
|
|
|
2005-03-10 04:49:37 -08:00
|
|
|
perlBerkeleyDB = import ../development/perl-modules/BerkeleyDB {
|
|
|
|
inherit fetchurl perl db4;
|
2003-12-21 12:52:13 -08:00
|
|
|
};
|
|
|
|
|
2005-03-10 04:49:37 -08:00
|
|
|
perlXMLParser = import ../development/perl-modules/XML-Parser {
|
|
|
|
inherit fetchurl perl expat;
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
2005-03-07 05:27:28 -08:00
|
|
|
perlXMLLibXML = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-LibXML-1.58";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-LibXML-1.58.tar.gz;
|
2005-03-07 05:27:28 -08:00
|
|
|
md5 = "4691fc436e5c0f22787f5b4a54fc56b0";
|
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
|
|
|
propagatedBuildInputs = [perlXMLLibXMLCommon perlXMLSAX];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLLibXMLCommon = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-LibXML-Common-0.13";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-LibXML-Common-0.13.tar.gz;
|
2005-03-07 05:27:28 -08:00
|
|
|
md5 = "13b6d93f53375d15fd11922216249659";
|
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLSAX = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-SAX-0.12";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-SAX-0.12.tar.gz;
|
2005-03-07 05:27:28 -08:00
|
|
|
md5 = "bff58bd077a9693fc8cf32e2b95f571f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLNamespaceSupport];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLNamespaceSupport = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-NamespaceSupport-1.08";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-NamespaceSupport-1.08.tar.gz;
|
2005-03-07 05:27:28 -08:00
|
|
|
md5 = "81bd5ae772906d0579c10061ed735dc8";
|
|
|
|
};
|
|
|
|
buildInputs = [];
|
|
|
|
};
|
|
|
|
|
2005-01-21 16:19:27 -08:00
|
|
|
perlXMLTwig = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Twig-3.15";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Twig-3.15.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "b26886b8bd19761fff37b23e4964b499";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLWriter = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Writer-0.520";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Writer-0.520.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "0a194acc70c906c0be32f4b2b7a9f689";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2005-03-07 05:27:28 -08:00
|
|
|
perlXMLSimple = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Simple-2.14";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Simple-2.14.tar.gz;
|
2005-03-07 05:27:28 -08:00
|
|
|
md5 = "f321058271815de28d214c8efb9091f9";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
|
|
|
|
2005-01-21 16:19:27 -08:00
|
|
|
perlTermReadKey = import ../development/perl-modules/generic perl {
|
|
|
|
name = "TermReadKey-2.30";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/TermReadKey-2.30.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "f0ef2cea8acfbcc58d865c05b0c7e1ff";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlDateManip = import ../development/perl-modules/generic perl {
|
|
|
|
name = "DateManip-5.42a";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/DateManip-5.42a.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "648386bbf46d021ae283811f75b07bdf";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLTree = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Tree-3.18";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Tree-3.18.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "6a9e4e565648c9772e7d8ec6d4392497";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLParser = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Parser-3.45";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Parser-3.45.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "c2ac1379ac5848dd32e24347cd679391";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLTagset = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Tagset-3.04";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Tagset-3.04.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "b82e0f08c1ececefe98b891f30dd56a6";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlURI = import ../development/perl-modules/generic perl {
|
|
|
|
name = "URI-1.35";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/URI-1.35.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "1a933b1114c41a25587ee59ba8376f7c";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlLWP = import ../development/perl-modules/generic perl {
|
|
|
|
name = "libwww-perl-5.803";
|
|
|
|
src = fetchurl {
|
2005-08-22 01:39:27 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/libwww-perl-5.803.tar.gz;
|
2005-01-21 16:19:27 -08:00
|
|
|
md5 = "3345d5f15a4f42350847254141725c8f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlURI perlHTMLParser];
|
|
|
|
};
|
|
|
|
|
2005-05-18 14:15:29 -07:00
|
|
|
perlLocaleGettext = import ../development/perl-modules/generic perl {
|
|
|
|
name = "LocaleGettext-1.04";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.04.tar.gz;
|
|
|
|
md5 = "578dd0c76f8673943be043435b0fbde4";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2004-09-22 03:18:02 -07:00
|
|
|
wxPython = (import ../development/python-modules/wxPython-2.5) {
|
2004-04-02 07:36:14 -08:00
|
|
|
inherit fetchurl stdenv pkgconfig wxGTK python;
|
2004-02-17 11:19:26 -08:00
|
|
|
};
|
|
|
|
|
2004-09-22 03:18:02 -07:00
|
|
|
wxPython24 = (import ../development/python-modules/wxPython) {
|
|
|
|
inherit fetchurl stdenv pkgconfig python;
|
|
|
|
wxGTK = wxGTK24;
|
|
|
|
};
|
|
|
|
|
2005-04-22 11:26:04 -07:00
|
|
|
pygtk = (import ../development/python-modules/pygtk) {
|
|
|
|
inherit fetchurl stdenv python pkgconfig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
2004-08-05 06:49:26 -07:00
|
|
|
readline = (import ../development/libraries/readline) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2004-09-26 11:12:51 -07:00
|
|
|
SDL = (import ../development/libraries/SDL) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
};
|
|
|
|
|
2004-11-19 09:47:17 -08:00
|
|
|
boehmgc = (import ../development/libraries/boehm-gc) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 08:28:57 -08:00
|
|
|
|
2005-03-10 03:40:16 -08:00
|
|
|
|
2003-11-05 04:17:48 -08:00
|
|
|
### SERVERS
|
|
|
|
|
|
|
|
apacheHttpd = (import ../servers/http/apache-httpd) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl openssl db4 expat;
|
2003-11-05 04:17:48 -08:00
|
|
|
sslSupport = true;
|
|
|
|
db4Support = true;
|
|
|
|
};
|
|
|
|
|
2003-11-06 04:43:25 -08:00
|
|
|
xfree86 = (import ../servers/x11/xfree86) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv flex bison;
|
2003-11-06 04:43:25 -08:00
|
|
|
buildServer = false;
|
|
|
|
buildClientLibs = true;
|
|
|
|
};
|
|
|
|
|
2004-08-24 04:38:40 -07:00
|
|
|
postgresql = (import ../servers/sql/postgresql) {
|
2004-08-24 05:02:07 -07:00
|
|
|
inherit fetchurl stdenv readline ncurses zlib;
|
2004-08-24 04:38:40 -07:00
|
|
|
};
|
|
|
|
|
2005-05-24 08:32:57 -07:00
|
|
|
postgresql_jdbc = (import ../servers/sql/postgresql/jdbc) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ant = apacheAntBlackdown14;
|
|
|
|
};
|
|
|
|
|
2005-01-21 11:25:57 -08:00
|
|
|
mysql = import ../servers/sql/mysql {
|
|
|
|
inherit fetchurl stdenv ncurses zlib perl;
|
|
|
|
ps = procps; /* !!! Linux only */
|
2005-01-21 10:24:25 -08:00
|
|
|
};
|
|
|
|
|
2004-08-30 11:22:14 -07:00
|
|
|
jetty = (import ../servers/http/jetty) {
|
2005-05-24 07:57:41 -07:00
|
|
|
inherit fetchurl stdenv unzip;
|
2004-08-30 11:22:14 -07:00
|
|
|
};
|
|
|
|
|
2004-09-26 11:12:51 -07:00
|
|
|
|
2003-11-05 04:17:48 -08:00
|
|
|
### OS-SPECIFIC
|
2003-11-03 10:21:30 -08:00
|
|
|
|
2003-11-03 02:22:00 -08:00
|
|
|
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 02:22:00 -08:00
|
|
|
};
|
2003-11-02 14:25:26 -08:00
|
|
|
|
2005-06-16 09:20:19 -07:00
|
|
|
kernel = (import ../os-specific/linux/kernel) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
|
|
|
|
2005-06-23 07:02:19 -07:00
|
|
|
mingetty = (import ../os-specific/linux/mingetty) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-11 07:57:15 -08:00
|
|
|
alsaLib = (import ../os-specific/linux/alsa/library) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-11 07:57:15 -08:00
|
|
|
};
|
|
|
|
|
2004-02-16 02:40:45 -08:00
|
|
|
utillinux = (import ../os-specific/linux/util-linux) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 02:40:45 -08:00
|
|
|
};
|
|
|
|
|
2004-02-16 06:09:55 -08:00
|
|
|
sysvinit = (import ../os-specific/linux/sysvinit) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 06:09:55 -08:00
|
|
|
};
|
|
|
|
|
2004-02-16 06:31:52 -08:00
|
|
|
e2fsprogs = (import ../os-specific/linux/e2fsprogs) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
|
|
|
|
2004-02-19 04:46:35 -08:00
|
|
|
nettools = (import ../os-specific/linux/net-tools) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-12-16 08:34:03 -08:00
|
|
|
modutils = (import ../os-specific/linux/modutils) {
|
|
|
|
inherit fetchurl stdenv bison flex;
|
|
|
|
};
|
|
|
|
|
2005-08-20 14:49:31 -07:00
|
|
|
module_init_tools = (import ../os-specific/linux/module-init-tools) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-30 04:44:51 -07:00
|
|
|
shadowutils = (import ../os-specific/linux/shadow) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-05 12:31:30 -07:00
|
|
|
iputils = (import ../os-specific/linux/iputils) {
|
2005-07-22 06:08:02 -07:00
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
2004-08-05 12:31:30 -07:00
|
|
|
glibc = stdenv.gcc.glibc;
|
|
|
|
};
|
2005-01-21 10:24:25 -08:00
|
|
|
|
|
|
|
procps = import ../os-specific/linux/procps {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2003-11-03 10:21:30 -08:00
|
|
|
|
2005-07-25 09:58:01 -07:00
|
|
|
syslinux = import ../os-specific/linux/syslinux {
|
|
|
|
inherit fetchurl stdenv nasm perl;
|
|
|
|
};
|
|
|
|
|
2005-08-17 10:37:55 -07:00
|
|
|
hotplug = import ../os-specific/linux/hotplug {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-19 07:11:05 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
udev = import ../os-specific/linux/udev {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-17 10:37:55 -07:00
|
|
|
};
|
|
|
|
|
2003-11-25 10:02:05 -08:00
|
|
|
### DATA
|
|
|
|
|
2004-04-08 07:06:15 -07: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 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv unzip;
|
2003-11-25 10:02:05 -08:00
|
|
|
};
|
|
|
|
|
2005-08-12 16:01:26 -07:00
|
|
|
docbook_ng = (import ../data/sgml+xml/schemas/docbook-ng) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-04-08 04:49:27 -07:00
|
|
|
docbook_xml_ebnf_dtd = (import ../data/sgml+xml/schemas/xml-dtd/docbook-ebnf) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2003-11-25 10:02:05 -08:00
|
|
|
docbook_xml_xslt = (import ../data/sgml+xml/stylesheets/xslt/docbook) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 10:02:05 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-05 04:17:48 -08:00
|
|
|
### APPLICATIONS
|
2003-11-03 10:21:30 -08:00
|
|
|
|
2005-05-24 01:42:03 -07:00
|
|
|
subversion11x = (import ../applications/version-management/subversion-1.1.x) {
|
2005-03-04 07:20:54 -08:00
|
|
|
inherit fetchurl stdenv openssl db4 expat swig zlib;
|
2003-11-05 04:17:48 -08:00
|
|
|
localServer = true;
|
2003-11-03 08:18:00 -08:00
|
|
|
httpServer = false;
|
2003-11-05 04:17:48 -08:00
|
|
|
sslSupport = true;
|
2005-03-04 07:20:54 -08:00
|
|
|
compressionSupport = true;
|
2003-11-05 04:17:48 -08:00
|
|
|
httpd = apacheHttpd;
|
2003-11-04 00:36:32 -08:00
|
|
|
};
|
2003-11-03 10:21:30 -08:00
|
|
|
|
2005-05-24 01:42:03 -07:00
|
|
|
subversion = (import ../applications/version-management/subversion-1.2.x) {
|
2005-04-29 07:32:31 -07:00
|
|
|
inherit fetchurl stdenv openssl db4 expat swig zlib;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
};
|
|
|
|
|
2005-05-24 01:42:03 -07:00
|
|
|
subversionWithJava = (import ../applications/version-management/subversion-1.2.x) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv openssl db4 expat;
|
2004-08-23 12:23:03 -07:00
|
|
|
swig = swigWithJava;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
2004-10-18 01:56:09 -07:00
|
|
|
javahlBindings = true;
|
|
|
|
j2sdk = blackdown;
|
2004-08-23 12:23:03 -07:00
|
|
|
};
|
|
|
|
|
2004-11-28 09:28:55 -08:00
|
|
|
rcs = (import ../applications/version-management/rcs) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
pan = (import ../applications/networking/newsreaders/pan) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig gnet libxml2 perl pcre;
|
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-06 07:24:19 -08:00
|
|
|
spellChecking = false;
|
|
|
|
};
|
|
|
|
|
2003-11-06 08:28:57 -08:00
|
|
|
sylpheed = (import ../applications/networking/mailreaders/sylpheed) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv openssl;
|
2004-04-05 06:42:41 -07:00
|
|
|
inherit (gtkLibs1x) gtk gdkpixbuf;
|
2003-11-06 08:28:57 -08:00
|
|
|
sslSupport = true;
|
|
|
|
imageSupport = true;
|
|
|
|
};
|
|
|
|
|
2005-05-26 13:09:29 -07:00
|
|
|
sylpheed_gtk2 = (import ../applications/networking/mailreaders/sylpheed-gtk2) {
|
|
|
|
inherit fetchurl stdenv pkgconfig openssl;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
sslSupport = true;
|
|
|
|
};
|
|
|
|
|
2004-02-10 10:32:42 -08:00
|
|
|
firefox = (import ../applications/networking/browsers/firefox) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
2004-09-19 07:13:24 -07:00
|
|
|
inherit (xlibs) libXi;
|
2003-11-07 03:18:47 -08:00
|
|
|
};
|
|
|
|
|
2004-10-17 06:28:28 -07:00
|
|
|
firefoxWrapper = (import ../applications/networking/browsers/firefox-wrapper) {
|
|
|
|
inherit stdenv firefox;
|
2005-03-12 05:35:27 -08:00
|
|
|
plugins = [
|
|
|
|
MPlayerPlugin
|
|
|
|
flashplayer
|
|
|
|
blackdown
|
|
|
|
# RealPlayer # disabled by default for legal reasons
|
|
|
|
];
|
2004-10-17 06:56:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
flashplayer = (import ../applications/networking/browsers/mozilla-plugins/flashplayer) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
inherit (xlibs) libXmu;
|
2004-10-17 06:28:28 -07:00
|
|
|
};
|
|
|
|
|
2004-09-15 04:06:15 -07:00
|
|
|
thunderbird =
|
2004-09-16 05:38:10 -07:00
|
|
|
(import ../build-support/make-symlinks) {
|
|
|
|
inherit stdenv;
|
2004-09-15 04:06:15 -07:00
|
|
|
dir =
|
|
|
|
(import ../applications/networking/mailreaders/thunderbird) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
};
|
2004-09-15 05:52:06 -07:00
|
|
|
files = ["bin/thunderbird" "lib/thunderbird-0.8/icons"];
|
2004-09-15 04:06:15 -07:00
|
|
|
};
|
|
|
|
|
2004-07-26 03:33:58 -07:00
|
|
|
lynx = (import ../applications/networking/browsers/lynx) {
|
|
|
|
inherit fetchurl stdenv ncurses openssl;
|
|
|
|
};
|
|
|
|
|
2005-02-26 18:16:21 -08:00
|
|
|
/*
|
2005-02-26 15:45:19 -08:00
|
|
|
kopete = (import ../applications/networking/instant-messengers/kopete) {
|
|
|
|
inherit fetchurl stdenv xlibs zlib libjpeg perl qt3;
|
|
|
|
};
|
2005-02-26 18:16:21 -08:00
|
|
|
*/
|
2005-02-26 15:45:19 -08:00
|
|
|
|
2005-01-19 13:04:43 -08:00
|
|
|
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-01-19 13:48:45 -08:00
|
|
|
|
|
|
|
flac = (import ../applications/audio/flac) {
|
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
|
|
|
|
2005-01-19 14:12:34 -08:00
|
|
|
lame = (import ../applications/audio/lame) {
|
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
};
|
2005-01-19 13:04:43 -08:00
|
|
|
|
2003-11-11 07:01:07 -08:00
|
|
|
MPlayer = (import ../applications/video/MPlayer) {
|
2005-02-16 08:18:43 -08:00
|
|
|
inherit fetchurl stdenv freetype x11 zlib libtheora;
|
2004-05-01 11:17:56 -07:00
|
|
|
inherit (xlibs) libXv;
|
2003-11-11 07:57:15 -08:00
|
|
|
alsaSupport = true;
|
|
|
|
alsa = alsaLib;
|
2005-02-16 08:18:43 -08:00
|
|
|
theoraSupport = true;
|
2003-11-11 07:01:07 -08:00
|
|
|
};
|
|
|
|
|
2004-10-17 06:56:56 -07:00
|
|
|
MPlayerPlugin = (import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in) {
|
2004-10-17 06:13:24 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig firefox;
|
|
|
|
inherit (xlibs) libXpm;
|
2005-05-18 14:15:29 -07:00
|
|
|
# !!! should depend on MPlayer
|
2003-11-13 05:11:38 -08:00
|
|
|
};
|
|
|
|
|
2003-12-03 13:58:16 -08:00
|
|
|
vlc = (import ../applications/video/vlc) {
|
2004-09-21 08:31:23 -07:00
|
|
|
inherit fetchurl stdenv libdvdcss wxGTK libdvdplay
|
2004-03-27 13:59:31 -08:00
|
|
|
mpeg2dec a52dec libmad x11;
|
2004-05-01 11:17:56 -07:00
|
|
|
inherit (xlibs) libXv;
|
2003-12-03 13:58:16 -08:00
|
|
|
alsa = alsaLib;
|
|
|
|
};
|
|
|
|
|
2004-12-10 15:16:23 -08:00
|
|
|
xineUI = (import ../applications/video/xine-ui) {
|
|
|
|
inherit fetchurl stdenv x11 xineLib libpng;
|
|
|
|
};
|
|
|
|
|
2005-03-12 04:53:03 -08:00
|
|
|
RealPlayer = import ../applications/video/RealPlayer {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
|
|
|
};
|
|
|
|
|
2004-01-21 01:34:19 -08:00
|
|
|
zapping = (import ../applications/video/zapping) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig perl python
|
2005-03-08 10:52:35 -08:00
|
|
|
gettext zvbi libjpeg libpng x11
|
2004-06-21 13:41:32 -07:00
|
|
|
rte perlXMLParser;
|
2005-03-08 10:52:35 -08:00
|
|
|
inherit (gnome) scrollkeeper libgnomeui libglade esound;
|
2004-06-21 11:13:45 -07:00
|
|
|
inherit (xlibs) libXv libXmu libXext;
|
2004-01-25 00:51:03 -08:00
|
|
|
teletextSupport = true;
|
|
|
|
jpegSupport = true;
|
|
|
|
pngSupport = true;
|
2004-06-21 13:41:32 -07:00
|
|
|
recordingSupport = true;
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
2005-01-19 14:51:27 -08:00
|
|
|
mythtv = (import ../applications/video/mythtv) {
|
2005-01-20 13:11:49 -08:00
|
|
|
inherit fetchurl stdenv which qt3 x11 lame;
|
|
|
|
inherit (xlibs) libXinerama libXv libXxf86vm;
|
2005-01-19 14:51:27 -08:00
|
|
|
};
|
|
|
|
|
2003-11-11 08:13:13 -08:00
|
|
|
gqview = (import ../applications/graphics/gqview) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv pkgconfig libpng;
|
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-11 08:13:13 -08:00
|
|
|
};
|
|
|
|
|
2005-03-11 02:46:20 -08:00
|
|
|
fspot = (import ../applications/graphics/f-spot) {
|
2005-03-11 02:55:21 -08:00
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
|
2005-03-11 04:00:28 -08:00
|
|
|
libexif libjpeg sqlite lcms libgphoto2 monoDLLFixer;
|
2005-03-11 02:46:20 -08:00
|
|
|
inherit (gnome) libgnome libgnomeui;
|
2005-03-11 02:55:21 -08:00
|
|
|
gtksharp = gtksharp1;
|
2005-03-11 02:46:20 -08:00
|
|
|
};
|
|
|
|
|
2004-11-04 12:19:42 -08:00
|
|
|
hello = (import ../applications/misc/hello/ex-1) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-27 04:09:22 -08:00
|
|
|
};
|
|
|
|
|
2004-04-06 10:47:34 -07:00
|
|
|
xchm = (import ../applications/misc/xchm) {
|
|
|
|
inherit fetchurl stdenv wxGTK chmlib;
|
|
|
|
};
|
|
|
|
|
2004-09-25 13:27:40 -07:00
|
|
|
acroread = (import ../applications/misc/acrobat-reader) {
|
2005-03-25 07:13:46 -08:00
|
|
|
inherit fetchurl stdenv zlib;
|
2004-09-25 13:27:40 -07:00
|
|
|
inherit (xlibs) libXt libXp libXext libX11;
|
2005-03-25 07:13:46 -08:00
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
2004-09-25 13:27:40 -07:00
|
|
|
};
|
|
|
|
|
2004-10-13 07:21:20 -07:00
|
|
|
eclipse = (import ../applications/editors/eclipse) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2005-02-26 15:45:19 -08:00
|
|
|
monodevelop = (import ../applications/editors/monodevelop) {
|
2005-03-09 09:49:19 -08:00
|
|
|
inherit fetchurl stdenv file mono gtksourceviewsharp
|
|
|
|
gtkmozembedsharp monodoc perl perlXMLParser pkgconfig;
|
2005-06-17 13:21:29 -07:00
|
|
|
inherit (gnome) gnomevfs libbonobo libglade libgnome GConf glib gtk;
|
2005-03-09 11:08:21 -08:00
|
|
|
mozilla = firefox;
|
2005-03-09 09:49:19 -08:00
|
|
|
gtksharp = gtksharp2;
|
2005-02-26 15:45:19 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
monodoc = (import ../applications/editors/monodoc) {
|
2005-03-09 09:49:19 -08:00
|
|
|
inherit fetchurl stdenv mono pkgconfig;
|
|
|
|
gtksharp = gtksharp1;
|
2005-02-26 15:45:19 -08:00
|
|
|
};
|
|
|
|
|
2004-10-06 04:32:20 -07:00
|
|
|
emacs = (import ../applications/editors/emacs) {
|
|
|
|
inherit fetchurl stdenv xlibs;
|
|
|
|
};
|
|
|
|
|
2003-12-08 03:56:50 -08:00
|
|
|
nxml = (import ../applications/editors/emacs/modes/nxml) {
|
2004-02-02 13:40:18 -08:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-08 03:56:50 -08:00
|
|
|
};
|
|
|
|
|
2004-10-06 05:06:23 -07:00
|
|
|
cua = (import ../applications/editors/emacs/modes/cua) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-12-05 23:36:56 -08:00
|
|
|
haskellMode = (import ../applications/editors/emacs/modes/haskell) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-10-06 06:17:06 -07:00
|
|
|
nano = (import ../applications/editors/nano) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2004-07-30 05:57:27 -07:00
|
|
|
vim = (import ../applications/editors/vim) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2004-02-13 06:42:28 -08:00
|
|
|
|
2004-07-30 06:38:10 -07:00
|
|
|
|
2004-04-01 08:02:53 -08:00
|
|
|
### GAMES
|
|
|
|
|
|
|
|
zoom = (import ../games/zoom) {
|
2004-04-05 06:34:13 -07:00
|
|
|
inherit fetchurl stdenv perl expat freetype;
|
|
|
|
inherit (xlibs) xlibs;
|
2004-04-01 08:02:53 -08:00
|
|
|
};
|
|
|
|
|
2004-06-09 10:59:46 -07:00
|
|
|
quake3demo = (import ../games/quake3demo) {
|
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
2004-06-09 11:06:29 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
ut2004demo = (import ../games/ut2004demo) {
|
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
|
|
|
};
|
2004-06-09 10:59:46 -07:00
|
|
|
|
2004-09-26 11:12:51 -07:00
|
|
|
generator = (import ../games/generator) {
|
|
|
|
inherit fetchurl stdenv SDL nasm;
|
|
|
|
inherit (gtkLibs1x) gtk;
|
|
|
|
};
|
|
|
|
|
2004-04-01 08:02:53 -08:00
|
|
|
|
2004-02-13 06:42:28 -08:00
|
|
|
### MISC
|
|
|
|
|
|
|
|
uml = (import ../misc/uml) {
|
2004-09-18 10:23:18 -07:00
|
|
|
inherit fetchurl stdenv perl;
|
2004-02-13 06:42:28 -08:00
|
|
|
m4 = gnum4;
|
2004-09-27 12:50:58 -07:00
|
|
|
gcc = gcc33;
|
2004-02-13 06:42:28 -08:00
|
|
|
};
|
|
|
|
|
2004-02-18 08:22:31 -08:00
|
|
|
umlutilities = (import ../misc/uml-utilities) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-11-03 13:28:03 -08:00
|
|
|
/*
|
|
|
|
atari800 = (import ../misc/emulators/atari800) {
|
|
|
|
inherit fetchurl stdenv zlib SDL;
|
|
|
|
};
|
|
|
|
|
|
|
|
ataripp = (import ../misc/emulators/atari++) {
|
|
|
|
inherit fetchurl stdenv x11 SDL;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2005-04-28 14:10:33 -07:00
|
|
|
tetex = (import ../misc/tex/tetex) {
|
|
|
|
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
|
|
|
|
};
|
|
|
|
|
2005-04-29 06:23:15 -07:00
|
|
|
ghostscript = (import ../misc/ghostscript) {
|
|
|
|
inherit fetchurl stdenv libjpeg libpng zlib;
|
|
|
|
};
|
|
|
|
|
2004-02-16 07:40:55 -08:00
|
|
|
nix = (import ../misc/nix) {
|
2004-03-31 02:19:24 -08:00
|
|
|
inherit fetchurl stdenv aterm perl;
|
2004-04-08 07:17:47 -07:00
|
|
|
curl = bootCurl; /* !!! ugly */
|
2004-02-16 08:54:01 -08:00
|
|
|
bdb = db4;
|
2004-02-16 07:40:55 -08:00
|
|
|
};
|
|
|
|
|
2003-11-03 02:22:00 -08:00
|
|
|
}
|