2006-02-08 17:37:45 +00:00
|
|
|
/* This file composes the Nix Packages collection. That is, it
|
|
|
|
imports the functions that build the various packages, and calls
|
|
|
|
them with appropriate arguments. The result is a set of all the
|
|
|
|
packages in the Nix Packages collection for some particular
|
|
|
|
platform. */
|
|
|
|
|
|
|
|
|
|
|
|
{ # The system for which to build the packages.
|
|
|
|
system ? __currentSystem
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
, # The standard environment to use. Only used for bootstrapping. If
|
|
|
|
# null, the default standard environment is used.
|
|
|
|
bootStdenv ? null
|
|
|
|
|
|
|
|
# More flags for the bootstrapping of stdenv.
|
|
|
|
, noSysDirs ? true
|
2004-09-18 18:23:18 +01:00
|
|
|
, gccWithCC ? true
|
|
|
|
, gccWithProfiling ? true
|
2004-03-11 17:26:14 +00:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
}:
|
2003-11-03 10:22:00 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
rec {
|
2003-11-25 18:02:05 +00:00
|
|
|
|
2004-03-27 21:59:31 +00:00
|
|
|
### Symbolic names.
|
|
|
|
|
2005-11-12 17:05:51 +00:00
|
|
|
# `xlibs' is the set of X library components. This used to be the
|
|
|
|
# old modular X libraries project (called `xlibs') but now it's just
|
|
|
|
# the set of packages in the modular X.org tree (which also includes
|
|
|
|
# non-library components like the server, drivers, fonts, etc.).
|
2006-07-17 13:46:39 +01:00
|
|
|
xlibs = xorg // {xlibs = xlibsWrapper;};
|
2005-11-12 17:05:51 +00:00
|
|
|
|
2006-07-17 13:46:39 +01:00
|
|
|
x11 = xlibsWrapper;
|
2006-02-08 17:37:45 +00:00
|
|
|
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
### Helper functions.
|
|
|
|
useFromStdenv = hasIt: it: alternative: if hasIt then it else alternative;
|
|
|
|
|
2006-03-23 16:47:34 +00:00
|
|
|
# Applying this to an attribute set will cause nix-env to look
|
|
|
|
# inside the set for derivations.
|
|
|
|
recurseIntoAttrs = attrs: attrs // {recurseForDerivations = true;};
|
|
|
|
|
2006-06-23 21:11:36 +01:00
|
|
|
# Override the compiler in stdenv for specific packages.
|
|
|
|
overrideGCC = stdenv: gcc: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args // { NIX_GCC = gcc; });
|
|
|
|
};
|
|
|
|
|
|
|
|
# Add some arbitrary packages to buildInputs for specific packages.
|
|
|
|
# Used to override packages in stenv like Make. Should not be used
|
|
|
|
# for other dependencies.
|
|
|
|
overrideInStdenv = stdenv: pkgs: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args //
|
|
|
|
{ buildInputs = (if args ? buildInputs then args.buildInputs else []) ++ pkgs; }
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
### STANDARD ENVIRONMENT
|
|
|
|
|
|
|
|
stdenv = if bootStdenv == null then defaultStdenv else bootStdenv;
|
|
|
|
|
|
|
|
defaultStdenv =
|
2006-02-09 15:55:20 +00:00
|
|
|
(import ../stdenv {
|
2006-02-08 17:37:45 +00:00
|
|
|
inherit system;
|
2006-02-08 17:39:57 +00:00
|
|
|
allPackages = import ./all-packages.nix;
|
2006-02-08 17:37:45 +00:00
|
|
|
}).stdenv;
|
|
|
|
|
2004-03-27 21:59:31 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
### BUILD SUPPORT
|
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
fetchurl = (import ../build-support/fetchurl) {
|
2006-02-09 17:04:18 +00:00
|
|
|
inherit stdenv curl;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
fetchsvn = (import ../build-support/fetchsvn) {
|
2006-07-17 16:22:20 +01:00
|
|
|
inherit stdenv subversion nix openssh;
|
|
|
|
sshSupport = true;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2006-05-11 13:36:16 +01:00
|
|
|
fetchcvs = (import ../build-support/fetchcvs) {
|
|
|
|
inherit stdenv cvs nix;
|
|
|
|
};
|
|
|
|
|
2006-01-30 11:18:38 +00:00
|
|
|
fetchdarcs = (import ../build-support/fetchdarcs) {
|
|
|
|
inherit stdenv darcs nix;
|
|
|
|
};
|
|
|
|
|
2005-04-22 13:14:55 +01:00
|
|
|
substituter = ../build-support/substitute/substitute.sh;
|
|
|
|
|
2005-04-22 19:26:04 +01:00
|
|
|
makeWrapper = ../build-support/make-wrapper/make-wrapper.sh;
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
|
|
|
### TOOLS
|
|
|
|
|
2005-10-10 01:55:07 +01:00
|
|
|
bc = (import ../tools/misc/bc) {
|
|
|
|
inherit fetchurl stdenv flex;
|
|
|
|
};
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
coreutils = useFromStdenv (stdenv ? coreutils) stdenv.coreutils
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../tools/misc/coreutils {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2005-08-28 15:23:30 +01:00
|
|
|
coreutilsDiet = (import ../tools/misc/coreutils-diet) {
|
|
|
|
inherit fetchurl stdenv dietgcc perl;
|
|
|
|
};
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
findutils = useFromStdenv (stdenv ? findutils) stdenv.findutils
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../tools/misc/findutils {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2005-08-23 14:48:43 +01:00
|
|
|
findutilsWrapper = (import ../tools/misc/findutils-wrapper) {
|
|
|
|
inherit stdenv findutils;
|
|
|
|
};
|
|
|
|
|
2003-12-02 12:54:21 +00:00
|
|
|
getopt = (import ../tools/misc/getopt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-02 12:54:21 +00:00
|
|
|
};
|
|
|
|
|
2005-07-21 12:26:51 +01:00
|
|
|
grub = (import ../tools/misc/grub) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-13 20:06:03 +01:00
|
|
|
};
|
|
|
|
|
2005-08-23 14:48:43 +01:00
|
|
|
grubWrapper = (import ../tools/misc/grub-wrapper) {
|
2005-08-13 20:06:03 +01:00
|
|
|
inherit stdenv grub diffutils gnused gnugrep;
|
2005-07-21 12:26:51 +01:00
|
|
|
};
|
|
|
|
|
2005-08-23 15:19:16 +01:00
|
|
|
man = (import ../tools/misc/man) {
|
|
|
|
inherit fetchurl stdenv db4 groff;
|
|
|
|
};
|
|
|
|
|
2005-07-31 21:11:36 +01:00
|
|
|
parted = (import ../tools/misc/parted) {
|
2005-07-31 21:53:53 +01:00
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline;
|
2005-07-31 21:11:36 +01:00
|
|
|
};
|
|
|
|
|
2005-07-31 23:21:04 +01:00
|
|
|
qtparted = (import ../tools/misc/qtparted) {
|
2006-06-17 23:04:42 +01:00
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline parted zlib;
|
2005-07-31 23:21:04 +01:00
|
|
|
inherit (xlibs) libX11 libXext;
|
2006-06-17 23:04:42 +01:00
|
|
|
qt3 = qt3NoMySQL;
|
2005-07-31 23:21:04 +01:00
|
|
|
};
|
2005-07-31 21:11:36 +01:00
|
|
|
|
2005-10-08 00:02:58 +01:00
|
|
|
jdiskreport = (import ../tools/misc/jdiskreport) {
|
|
|
|
inherit fetchurl stdenv unzip jdk;
|
|
|
|
};
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
diffutils = useFromStdenv (stdenv ? diffutils) stdenv.diffutils
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../tools/text/diffutils {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
});
|
2003-11-02 18:14:24 +00:00
|
|
|
|
2004-02-13 14:42:28 +00:00
|
|
|
gnupatch = (import ../tools/text/gnupatch) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-07-14 12:20:30 +01:00
|
|
|
patch = useFromStdenv (stdenv ? patch) stdenv.patch gnupatch;
|
2004-08-09 15:33:14 +01:00
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
gnused = useFromStdenv (stdenv ? gnused) stdenv.gnused
|
|
|
|
(import ../tools/text/gnused {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
gnugrep = useFromStdenv (stdenv ? gnugrep) stdenv.gnugrep
|
|
|
|
(import ../tools/text/gnugrep {
|
|
|
|
inherit fetchurl stdenv pcre;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
gawk = useFromStdenv (stdenv ? gawk) stdenv.gawk
|
|
|
|
(import ../tools/text/gawk {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 18:14:24 +00:00
|
|
|
|
2005-08-21 14:59:04 +01:00
|
|
|
groff = (import ../tools/text/groff) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-06-03 18:16:16 +01:00
|
|
|
enscript = (import ../tools/text/enscript) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
ed = (import ../tools/text/ed) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2004-08-20 23:06:36 +01:00
|
|
|
xpf = (import ../tools/text/xml/xpf) {
|
2005-06-20 21:35:07 +01:00
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
|
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
pythonSupport = true;
|
|
|
|
};
|
2004-08-20 23:06:36 +01:00
|
|
|
};
|
|
|
|
|
2005-10-26 22:10:31 +01:00
|
|
|
sablotron = (import ../tools/text/xml/sablotron) {
|
|
|
|
inherit fetchurl stdenv expat;
|
|
|
|
};
|
|
|
|
|
2005-10-24 15:01:08 +01:00
|
|
|
jing = (import ../tools/text/xml/jing) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-09-26 14:03:59 +01:00
|
|
|
jing_tools = (import ../tools/text/xml/jing/jing-script.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
2005-09-18 00:58:51 +01:00
|
|
|
jre = blackdown;
|
2004-09-26 14:03:59 +01:00
|
|
|
};
|
|
|
|
|
2006-07-04 20:17:34 +01:00
|
|
|
trang = import ../tools/text/xml/trang {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
jre = blackdown;
|
|
|
|
};
|
|
|
|
|
2005-08-30 14:56:15 +01:00
|
|
|
cpio = (import ../tools/archivers/cpio) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
gnutar = useFromStdenv (stdenv ? gnutar) stdenv.gnutar
|
|
|
|
(import ../tools/archivers/gnutar {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-06-01 22:25:40 +01:00
|
|
|
cabextract = import ../tools/archivers/cabextract {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-09-05 13:26:16 +01:00
|
|
|
gnutarDiet = (import ../tools/archivers/gnutar-diet) {
|
|
|
|
inherit fetchurl stdenv dietgcc;
|
|
|
|
};
|
|
|
|
|
2003-11-07 11:18:47 +00:00
|
|
|
zip = (import ../tools/archivers/zip) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-07 11:18:47 +00:00
|
|
|
};
|
|
|
|
|
2005-04-11 09:26:36 +01:00
|
|
|
unzip = import ../tools/archivers/unzip {
|
2005-03-21 14:48:48 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
gzip = useFromStdenv (stdenv ? gzip) stdenv.gzip
|
|
|
|
(import ../tools/compression/gzip {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
bzip2 = useFromStdenv (stdenv ? bzip2) stdenv.bzip2
|
|
|
|
(import ../tools/compression/bzip2 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2004-11-29 19:35:42 +00:00
|
|
|
|
|
|
|
zdelta = (import ../tools/compression/zdelta) {
|
|
|
|
inherit fetchurl stdenv;
|
2004-11-29 21:17:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bsdiff = (import ../tools/compression/bsdiff) {
|
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 18:21:30 +00:00
|
|
|
};
|
|
|
|
|
2003-12-23 20:51:58 +00:00
|
|
|
which = (import ../tools/system/which) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-23 20:51:58 +00:00
|
|
|
};
|
|
|
|
|
2003-11-04 08:44:46 +00:00
|
|
|
wget = (import ../tools/networking/wget) {
|
2006-06-18 17:01:28 +01:00
|
|
|
inherit fetchurl stdenv gettext;
|
2003-11-04 08:44:46 +00:00
|
|
|
};
|
|
|
|
|
2006-03-08 15:38:58 +00:00
|
|
|
curl = if stdenv ? curl then stdenv.curl else (assert false; null);
|
2006-02-09 17:04:18 +00:00
|
|
|
|
|
|
|
realCurl = (import ../tools/networking/curl) {
|
* 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 16:53:04 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2005-09-05 12:35:13 +01:00
|
|
|
curlDiet = (import ../tools/networking/curl-diet) {
|
|
|
|
inherit fetchurl stdenv zlib dietgcc;
|
|
|
|
};
|
2005-09-01 17:38:31 +01:00
|
|
|
|
2003-12-14 20:36:43 +00:00
|
|
|
par2cmdline = (import ../tools/networking/par2cmdline) {
|
2006-06-23 21:11:36 +01:00
|
|
|
inherit fetchurl;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2003-12-14 20:36:43 +00:00
|
|
|
};
|
|
|
|
|
2004-01-25 08:59:20 +00:00
|
|
|
cksfv = (import ../tools/networking/cksfv) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-25 08:59:20 +00:00
|
|
|
};
|
|
|
|
|
2006-04-10 18:49:24 +01:00
|
|
|
bittorrent = (import ../tools/networking/p2p/bittorrent) {
|
2005-04-22 19:26:04 +01:00
|
|
|
inherit fetchurl stdenv python pygtk makeWrapper;
|
2004-02-17 20:03:12 +00:00
|
|
|
};
|
|
|
|
|
2006-04-10 18:49:24 +01:00
|
|
|
azureus = import ../tools/networking/p2p/azureus {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit fetchurl stdenv jdk swt;
|
|
|
|
};
|
|
|
|
|
2006-04-18 19:46:36 +01:00
|
|
|
gtkgnutella = (import ../tools/networking/p2p/gtk-gnutella) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libxml2;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
2005-08-21 14:59:04 +01:00
|
|
|
dhcp = (import ../tools/networking/dhcp) {
|
2005-10-16 22:48:27 +01:00
|
|
|
inherit fetchurl stdenv groff nettools coreutils iputils gnused bash;
|
2005-08-21 14:59:04 +01:00
|
|
|
};
|
|
|
|
|
2005-08-21 20:46:16 +01:00
|
|
|
dhcpWrapper = (import ../tools/networking/dhcp-wrapper) {
|
|
|
|
inherit stdenv dhcp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-12-10 09:51:32 +00:00
|
|
|
graphviz = (import ../tools/graphics/graphviz) {
|
2005-08-05 12:52:44 +01:00
|
|
|
inherit fetchurl stdenv libpng libjpeg expat x11 yacc libtool;
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit (xlibs) libXaw;
|
2003-12-10 09:51:32 +00:00
|
|
|
};
|
|
|
|
|
2005-05-06 09:54:01 +01:00
|
|
|
gnuplot = (import ../tools/graphics/gnuplot) {
|
|
|
|
inherit fetchurl stdenv zlib libpng texinfo;
|
|
|
|
};
|
|
|
|
|
2005-03-11 10:46:20 +00:00
|
|
|
exif = (import ../tools/graphics/exif) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libexif popt;
|
|
|
|
};
|
|
|
|
|
2006-07-17 21:35:02 +01:00
|
|
|
transfig = (import ../tools/graphics/transfig) {
|
|
|
|
inherit fetchurl stdenv libpng libjpeg zlib;
|
|
|
|
inherit (xlibs) imake;
|
|
|
|
};
|
|
|
|
|
2004-07-28 11:49:55 +01:00
|
|
|
hevea = (import ../tools/typesetting/hevea) {
|
|
|
|
inherit fetchurl stdenv ocaml;
|
|
|
|
};
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2006-01-27 20:51:41 +00:00
|
|
|
lhs2tex = (import ../tools/typesetting/lhs2tex) {
|
|
|
|
inherit fetchurl stdenv ghc tetex polytable;
|
|
|
|
};
|
|
|
|
|
2005-08-13 19:12:10 +01:00
|
|
|
xmlroff = (import ../tools/typesetting/xmlroff) {
|
2005-08-13 22:35:49 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
|
|
|
|
inherit (gtkLibs) glib pango gtk;
|
|
|
|
inherit (gnome) libgnomeprint;
|
|
|
|
inherit pangoxsl;
|
2005-08-13 19:12:10 +01:00
|
|
|
};
|
|
|
|
|
2004-07-30 17:15:55 +01:00
|
|
|
less = (import ../tools/misc/less) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2005-03-09 17:49:19 +00:00
|
|
|
file = (import ../tools/misc/file) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-07-30 17:15:55 +01:00
|
|
|
screen = (import ../tools/misc/screen) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2004-08-02 13:27:01 +01:00
|
|
|
};
|
2004-07-30 17:15:55 +01:00
|
|
|
|
2004-09-22 20:31:39 +01:00
|
|
|
xsel = (import ../tools/misc/xsel) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
};
|
|
|
|
|
2005-01-22 00:19:27 +00:00
|
|
|
xmltv = import ../tools/misc/xmltv {
|
|
|
|
inherit fetchurl perl perlTermReadKey perlXMLTwig perlXMLWriter
|
|
|
|
perlDateManip perlHTMLTree perlHTMLParser perlHTMLTagset
|
|
|
|
perlURI perlLWP;
|
|
|
|
};
|
|
|
|
|
2004-08-02 13:27:01 +01:00
|
|
|
openssh = (import ../tools/networking/openssh) {
|
|
|
|
inherit fetchurl stdenv zlib openssl;
|
2006-01-17 19:06:46 +00:00
|
|
|
inherit (xlibs) xauth;
|
|
|
|
xforwarding = true;
|
2004-07-30 17:15:55 +01:00
|
|
|
};
|
2004-08-02 13:27:01 +01:00
|
|
|
|
2004-08-03 16:41:08 +01:00
|
|
|
mktemp = (import ../tools/security/mktemp) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-06 11:01:15 +01:00
|
|
|
nmap = (import ../tools/security/nmap) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-12-18 22:14:31 +00:00
|
|
|
gnupg = import ../tools/security/gnupg {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ideaSupport = false; # enable for IDEA crypto support
|
|
|
|
};
|
|
|
|
|
2005-03-16 15:13:30 +00:00
|
|
|
mjpegtools = (import ../tools/video/mjpegtools) {
|
2005-03-18 08:10:35 +00:00
|
|
|
inherit fetchurl stdenv libjpeg;
|
|
|
|
inherit (xlibs) libX11;
|
2005-03-16 15:13:30 +00:00
|
|
|
};
|
2005-07-29 11:06:49 +01:00
|
|
|
|
2006-07-13 15:54:24 +01:00
|
|
|
tightvnc = import ../tools/admin/tightvnc {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg;
|
|
|
|
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
|
|
|
};
|
|
|
|
|
2005-07-29 11:06:49 +01:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
### SHELLS
|
|
|
|
|
2006-03-08 15:00:18 +00:00
|
|
|
bash = useFromStdenv (stdenv ? bash) stdenv.bash
|
|
|
|
(import ../shells/bash {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2005-10-24 16:15:34 +01:00
|
|
|
tcsh = (import ../shells/tcsh) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2005-12-27 14:52:29 +00:00
|
|
|
bashStatic = (import ../shells/bash-static) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-12-26 15:56:00 +00:00
|
|
|
};
|
2005-08-30 14:56:15 +01:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
|
|
|
### DEVELOPMENT
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
binutils = useFromStdenv (stdenv ? binutils) stdenv.binutils
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../development/tools/misc/binutils {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2005-12-31 03:46:20 +00:00
|
|
|
binutilsMips = (import ../development/tools/misc/binutils-cross) {
|
2005-11-03 23:33:35 +00:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2005-12-31 03:46:20 +00:00
|
|
|
cross = "mips-linux";
|
|
|
|
};
|
|
|
|
|
|
|
|
binutilsArm = (import ../development/tools/misc/binutils-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
cross = "arm-linux";
|
2005-11-03 23:33:35 +00:00
|
|
|
};
|
|
|
|
|
2005-12-31 16:30:47 +00:00
|
|
|
binutilsSparc = (import ../development/tools/misc/binutils-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
cross = "sparc-linux";
|
|
|
|
};
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
patchelf = useFromStdenv (stdenv ? patchelf) stdenv.patchelf
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../development/tools/misc/patchelf {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2004-09-25 20:32:23 +01:00
|
|
|
|
2006-03-03 22:31:16 +00:00
|
|
|
patchelfNew = (import ../development/tools/misc/patchelf/new.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
gnum4 = (import ../development/tools/misc/gnum4) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-06-29 13:41:25 +01:00
|
|
|
autoconf259 = (import ../development/tools/misc/autoconf) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-25 18:02:05 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2006-06-29 13:41:25 +01:00
|
|
|
autoconf260 = (import ../development/tools/misc/autoconf-2.60) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2006-06-29 13:48:39 +01:00
|
|
|
autoconf = autoconf259;
|
2006-06-29 13:41:25 +01:00
|
|
|
|
2005-09-13 10:46:46 +01:00
|
|
|
automake17x = (import ../development/tools/misc/automake/automake-1.7.x.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2005-03-17 09:18:49 +00:00
|
|
|
automake19x = (import ../development/tools/misc/automake/automake-1.9.x.nix) {
|
2005-01-26 09:47:20 +00:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
|
|
|
};
|
|
|
|
|
2005-09-13 10:46:46 +01:00
|
|
|
automake = automake19x;
|
|
|
|
|
2003-12-23 20:51:58 +00:00
|
|
|
libtool = (import ../development/tools/misc/libtool) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-12-23 20:51:58 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
pkgconfig = (import ../development/tools/misc/pkgconfig) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2005-04-27 17:22:43 +01:00
|
|
|
pkgconfig017x = (import ../development/tools/misc/pkgconfig/pkgconfig-0.17.2.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-07-01 01:51:14 +01:00
|
|
|
pkgconfig_latest = (import ../development/tools/misc/pkgconfig/pkgconfig-0.20.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-04 11:11:50 +01:00
|
|
|
strace = (import ../development/tools/misc/strace) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-12-21 20:52:13 +00:00
|
|
|
swig = (import ../development/tools/misc/swig) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl python;
|
2003-12-21 20:52:13 +00:00
|
|
|
perlSupport = true;
|
|
|
|
pythonSupport = true;
|
2004-08-23 20:23:03 +01:00
|
|
|
javaSupport = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
swigWithJava = (import ../development/tools/misc/swig) {
|
2004-09-08 15:39:30 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-09-18 00:58:51 +01:00
|
|
|
jdk = blackdown;
|
2004-08-23 20:23:03 +01:00
|
|
|
perlSupport = false;
|
|
|
|
pythonSupport = false;
|
|
|
|
javaSupport = true;
|
2003-12-21 20:52:13 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 14:50:18 +00:00
|
|
|
valgrind = (import ../development/tools/misc/valgrind) {
|
2005-10-24 14:01:49 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 14:50:18 +00:00
|
|
|
};
|
|
|
|
|
2005-11-12 17:08:51 +00:00
|
|
|
kcachegrind = (import ../development/tools/misc/kcachegrind) {
|
2005-11-12 21:33:39 +00:00
|
|
|
inherit fetchurl stdenv kdelibs zlib perl expat libpng libjpeg;
|
|
|
|
inherit (xlibs) libX11 libXext libSM;
|
2005-11-12 17:44:40 +00:00
|
|
|
qt = qt3;
|
2005-11-12 17:08:51 +00:00
|
|
|
};
|
|
|
|
|
2004-03-05 10:13:23 +00:00
|
|
|
texinfo = (import ../development/tools/misc/texinfo) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
|
|
|
gperf = (import ../development/tools/misc/gperf) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-21 12:50:37 +00:00
|
|
|
ctags = (import ../development/tools/misc/ctags) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-10-22 15:34:58 +01:00
|
|
|
lcov = (import ../development/tools/misc/lcov) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
|
|
|
|
2005-05-18 22:15:29 +01:00
|
|
|
help2man = (import ../development/tools/misc/help2man) {
|
|
|
|
inherit fetchurl stdenv perl gettext perlLocaleGettext;
|
|
|
|
};
|
|
|
|
|
2004-08-05 14:05:38 +01:00
|
|
|
octave = (import ../development/interpreters/octave) {
|
2005-03-16 15:13:30 +00:00
|
|
|
inherit fetchurl stdenv readline ncurses g77 perl flex;
|
2004-03-05 10:13:23 +00:00
|
|
|
};
|
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
gnumake = useFromStdenv (stdenv ? gnumake) stdenv.gnumake
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../development/tools/build-managers/gnumake {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-06 12:43:25 +00:00
|
|
|
|
2006-06-22 10:38:32 +01:00
|
|
|
gnumake380 = import ../development/tools/build-managers/gnumake-3.80 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-02-02 17:07:07 +00:00
|
|
|
mk = (import ../development/tools/build-managers/mk) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
noweb = (import ../development/tools/literate-programming/noweb) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-02-02 12:59:41 +00:00
|
|
|
scons = (import ../development/tools/build-managers/scons) {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
|
|
|
|
2003-11-06 12:43:25 +00:00
|
|
|
bison = (import ../development/tools/parsing/bison) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 12:43:25 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2004-09-22 09:49:22 +01:00
|
|
|
yacc = bison;
|
|
|
|
|
2004-01-30 15:52:17 +00:00
|
|
|
bisonnew = (import ../development/tools/parsing/bison/bison-new.nix) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-30 15:52:17 +00:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2003-11-06 12:43:25 +00:00
|
|
|
flex = (import ../development/tools/parsing/flex) {
|
2004-09-22 09:49:22 +01:00
|
|
|
inherit fetchurl stdenv yacc;
|
2003-11-06 12:43:25 +00:00
|
|
|
};
|
|
|
|
|
2005-08-29 18:54:40 +01:00
|
|
|
#flexWrapper = (import ../development/tools/parsing/flex-wrapper) {
|
|
|
|
# inherit stdenv flex ;
|
|
|
|
#};
|
2005-08-27 21:48:05 +01:00
|
|
|
|
2004-01-30 10:10:06 +00:00
|
|
|
flexnew = (import ../development/tools/parsing/flex/flex-new.nix) {
|
2004-09-22 09:49:22 +01:00
|
|
|
inherit fetchurl stdenv yacc;
|
2004-01-30 17:23:34 +00:00
|
|
|
m4 = gnum4;
|
2004-01-30 10:10:06 +00:00
|
|
|
};
|
|
|
|
|
2006-07-10 16:42:19 +01:00
|
|
|
gcc = useFromStdenv (stdenv ? gcc) stdenv.gcc gcc41;
|
2004-09-21 16:31:23 +01:00
|
|
|
|
2004-11-08 14:03:10 +00:00
|
|
|
gcc_static = (import ../development/compilers/gcc-static-3.4) {
|
2004-09-02 14:56:36 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-08-28 01:19:42 +01:00
|
|
|
dietgcc = (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = (import ../os-specific/linux/dietlibc-wrapper) {
|
|
|
|
inherit stdenv dietlibc;
|
2006-06-25 01:53:34 +01:00
|
|
|
#gcc = stdenv.gcc;
|
|
|
|
gcc = gcc34;
|
2005-08-28 01:19:42 +01:00
|
|
|
};
|
2005-12-26 15:56:00 +00:00
|
|
|
#inherit (stdenv.gcc) binutils glibc;
|
2006-06-25 01:53:34 +01:00
|
|
|
inherit (gcc34) binutils;
|
2005-12-26 15:56:00 +00:00
|
|
|
glibc = dietlibc;
|
2005-08-28 01:19:42 +01:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2006-07-10 16:42:19 +01:00
|
|
|
wrapGCC = baseGCC: (import ../build-support/gcc-wrapper) {
|
2004-06-29 09:25:55 +01:00
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2006-07-10 16:42:19 +01:00
|
|
|
gcc = baseGCC;
|
|
|
|
inherit stdenv binutils glibc;
|
2004-06-29 09:25:55 +01:00
|
|
|
};
|
|
|
|
|
2006-07-10 16:42:19 +01:00
|
|
|
gcc295 = wrapGCC (import ../development/compilers/gcc-2.95 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
|
|
|
|
|
|
|
gcc33 = wrapGCC (import ../development/compilers/gcc-3.3 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
|
|
|
|
|
|
|
gcc34 = wrapGCC (import ../development/compilers/gcc-3.4 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
|
|
|
|
|
|
|
gcc40 = wrapGCC (import ../development/compilers/gcc-4.0 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
gcc41 = wrapGCC (import ../development/compilers/gcc-4.1 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
2006-06-21 16:54:18 +01:00
|
|
|
|
2006-07-14 23:34:24 +01:00
|
|
|
gccApple = wrapGCC (import ../development/compilers/gcc-apple {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
|
|
|
|
2005-12-31 16:30:47 +00:00
|
|
|
gcc40sparc = (import ../build-support/gcc-cross-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
cross = "sparc-linux";
|
|
|
|
gcc = (import ../development/compilers/gcc-4.0-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = false;
|
|
|
|
langCC = false;
|
|
|
|
binutilsCross = binutilsSparc;
|
|
|
|
kernelHeadersCross = kernelHeadersSparc;
|
|
|
|
cross = "sparc-linux";
|
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) glibc;
|
|
|
|
binutils = binutilsSparc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2006-03-01 19:11:42 +00:00
|
|
|
gcc40mipsboot = (import ../development/compilers/gcc-4.0-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = false;
|
|
|
|
langCC = false;
|
|
|
|
binutilsCross = binutilsMips;
|
|
|
|
kernelHeadersCross = kernelHeadersMips;
|
|
|
|
cross = "mips-linux";
|
|
|
|
};
|
|
|
|
|
2005-12-31 14:35:49 +00:00
|
|
|
gcc40mips = (import ../build-support/gcc-cross-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
cross = "mips-linux";
|
2006-03-01 19:11:42 +00:00
|
|
|
gcc = gcc40mipsboot;
|
|
|
|
#inherit (stdenv.gcc) glibc;
|
|
|
|
glibc = uclibcMips;
|
2005-12-31 14:35:49 +00:00
|
|
|
binutils = binutilsMips;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-29 01:43:11 +00:00
|
|
|
gcc40arm = (import ../build-support/gcc-cross-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
cross = "arm-linux";
|
2005-12-31 14:35:49 +00:00
|
|
|
gcc = (import ../development/compilers/gcc-4.0-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2005-11-29 01:43:11 +00:00
|
|
|
langF77 = false;
|
|
|
|
langCC = false;
|
2005-12-31 14:35:49 +00:00
|
|
|
binutilsCross = binutilsArm;
|
|
|
|
kernelHeadersCross = kernelHeadersArm;
|
|
|
|
cross = "arm-linux";
|
2005-11-29 01:43:11 +00:00
|
|
|
};
|
2005-12-31 03:46:20 +00:00
|
|
|
inherit (stdenv.gcc) glibc;
|
|
|
|
binutils = binutilsArm;
|
2005-11-29 01:43:11 +00:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
2005-12-31 14:35:49 +00:00
|
|
|
|
2004-03-08 16:02:46 +00:00
|
|
|
g77 = (import ../build-support/gcc-wrapper) {
|
2004-03-11 17:26:14 +00:00
|
|
|
name = "g77";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2004-09-18 18:23:18 +01:00
|
|
|
gcc = (import ../development/compilers/gcc-3.3) {
|
2004-03-11 17:26:14 +00:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-03-05 10:13:23 +00:00
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
|
|
|
};
|
2004-09-18 22:20:15 +01:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2004-03-11 17:26:14 +00:00
|
|
|
inherit stdenv;
|
2004-03-05 10:13:23 +00:00
|
|
|
};
|
|
|
|
|
2005-08-17 15:29:04 +01: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 18:30:45 +01:00
|
|
|
opencxx = (import ../development/compilers/opencxx) {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
gcc = gcc33;
|
|
|
|
};
|
|
|
|
|
2004-02-12 13:18:24 +00:00
|
|
|
jikes = (import ../development/compilers/jikes) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
2005-09-07 11:08:00 +01:00
|
|
|
ecj = (import ../development/eclipse/ecj) {
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit fetchurl stdenv unzip jre;
|
2005-10-07 23:27:42 +01:00
|
|
|
ant = apacheAntBlackdown14;
|
2005-09-06 01:00:22 +01:00
|
|
|
};
|
|
|
|
|
2005-09-07 11:08:00 +01:00
|
|
|
jdtsdk = (import ../development/eclipse/jdt-sdk) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-08-24 10:12:01 +01:00
|
|
|
blackdown = (import ../development/compilers/blackdown) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-10-04 16:01:38 +01:00
|
|
|
jdk =
|
2006-07-17 12:07:32 +01:00
|
|
|
if stdenv.isDarwin then
|
2005-10-04 16:01:38 +01:00
|
|
|
"/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home"
|
|
|
|
else
|
|
|
|
(import ../development/compilers/jdk) {
|
2005-10-07 15:49:37 +01:00
|
|
|
inherit fetchurl stdenv unzip;
|
2005-10-07 23:27:42 +01:00
|
|
|
inherit (xlibs) libX11 libXext;
|
2005-10-04 16:01:38 +01:00
|
|
|
};
|
2003-12-21 20:52:13 +00:00
|
|
|
|
2005-09-18 00:58:51 +01:00
|
|
|
j2sdk14x = (import ../development/compilers/jdk/default-1.4.nix) {
|
2004-05-12 16:06:23 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-03-26 04:52:55 +01:00
|
|
|
aspectj =
|
|
|
|
(import ../development/compilers/aspectj) {
|
|
|
|
inherit stdenv fetchurl jre;
|
|
|
|
};
|
|
|
|
|
2006-03-26 04:21:32 +01:00
|
|
|
abc =
|
|
|
|
abcPatchable [];
|
|
|
|
|
|
|
|
abcPatchable = patches :
|
|
|
|
(import ../development/compilers/abc/default.nix) {
|
2006-03-26 04:52:55 +01:00
|
|
|
inherit stdenv fetchurl patches jre;
|
2006-03-26 04:21:32 +01:00
|
|
|
apacheAnt = apacheAntBlackdown14;
|
|
|
|
javaCup = import ../development/libraries/java/cup {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
jdk = blackdown;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2004-07-28 11:08:31 +01:00
|
|
|
ocaml = (import ../development/compilers/ocaml) {
|
2004-07-28 12:16:25 +01:00
|
|
|
inherit fetchurl stdenv x11;
|
2004-07-16 23:58:15 +01:00
|
|
|
};
|
|
|
|
|
2006-03-01 09:18:22 +00:00
|
|
|
ocaml3080 = (import ../development/compilers/ocaml/ocaml-3.08.0.nix) {
|
2006-06-23 21:11:36 +01:00
|
|
|
inherit fetchurl x11;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2006-03-01 09:18:22 +00:00
|
|
|
};
|
|
|
|
|
2006-02-02 17:07:07 +00:00
|
|
|
qcmm = (import ../development/compilers/qcmm) {
|
2006-03-01 09:18:22 +00:00
|
|
|
lua = lua4;
|
|
|
|
ocaml = ocaml3080;
|
|
|
|
inherit fetchurl stdenv mk noweb groff;
|
2006-02-02 17:07:07 +00:00
|
|
|
};
|
|
|
|
|
2005-02-26 23:45:19 +00:00
|
|
|
mono = (import ../development/compilers/mono) {
|
|
|
|
inherit fetchurl stdenv bison pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2005-03-03 17:19:58 +00:00
|
|
|
monoDLLFixer = import ../build-support/mono-dll-fixer {
|
|
|
|
inherit stdenv perl;
|
|
|
|
};
|
|
|
|
|
2004-08-10 12:07:50 +01:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt) {
|
2006-06-23 21:11:36 +01:00
|
|
|
inherit fetchurl pkgconfig sdf aterm;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2005-10-31 14:28:11 +00:00
|
|
|
};
|
|
|
|
|
2005-06-30 17:54:25 +01:00
|
|
|
strategoxtUtils = (import ../development/compilers/strategoxt/utils) {
|
2005-11-04 19:20:51 +00:00
|
|
|
inherit fetchurl pkgconfig stdenv aterm sdf strategoxt;
|
2005-06-30 17:54:25 +01:00
|
|
|
};
|
|
|
|
|
2004-08-17 12:53:31 +01:00
|
|
|
bibtextools = (import ../tools/typesetting/bibtex-tools) {
|
2005-11-04 13:39:32 +00:00
|
|
|
inherit fetchurl stdenv aterm tetex hevea sdf strategoxt;
|
2004-08-17 12:53:31 +01:00
|
|
|
};
|
|
|
|
|
2005-12-22 07:39:06 +00:00
|
|
|
transformers = (import ../development/compilers/transformers) {
|
2006-06-24 12:16:29 +01:00
|
|
|
inherit fetchurl pkgconfig sdf;
|
2005-12-22 07:39:06 +00:00
|
|
|
aterm = aterm23x;
|
|
|
|
|
2006-06-24 12:16:29 +01:00
|
|
|
stdenv = overrideGCC (overrideInStdenv stdenv [gnumake380]) gcc34;
|
|
|
|
|
2005-12-22 07:39:06 +00:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt/strategoxt-0.14.nix) {
|
2006-06-23 23:47:19 +01:00
|
|
|
inherit fetchurl pkgconfig sdf;
|
2005-12-22 07:39:06 +00:00
|
|
|
aterm = aterm23x;
|
2006-06-24 11:28:50 +01:00
|
|
|
stdenv = overrideGCC (overrideInStdenv stdenv [gnumake380]) gcc34;
|
2005-12-22 07:39:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
stlport = (import ../development/libraries/stlport) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
aterm23x = (import ../development/libraries/aterm/aterm-2.3.1.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-02-12 13:18:24 +00:00
|
|
|
ghcboot = (import ../development/compilers/ghc/boot.nix) {
|
2005-10-02 19:48:08 +01:00
|
|
|
inherit fetchurl stdenv perl ncurses;
|
|
|
|
readline = readline4;
|
2004-02-12 13:18:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ghc = (import ../development/compilers/ghc) {
|
2005-10-04 21:16:33 +01:00
|
|
|
inherit fetchurl stdenv perl ncurses readline;
|
2006-01-31 23:58:32 +00:00
|
|
|
gcc = stdenv.gcc;
|
2004-02-12 13:18:24 +00:00
|
|
|
ghc = ghcboot;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2006-01-27 10:16:15 +00:00
|
|
|
ghcWrapper = assert uulib.ghc == ghc;
|
|
|
|
(import ../development/compilers/ghc-wrapper) {
|
|
|
|
inherit stdenv ghc;
|
|
|
|
libraries = [ uulib ];
|
|
|
|
};
|
|
|
|
|
|
|
|
uuagc = (import ../development/tools/haskell/uuagc) {
|
|
|
|
inherit fetchurl stdenv ghc uulib;
|
|
|
|
};
|
|
|
|
|
2004-02-12 13:18:24 +00:00
|
|
|
helium = (import ../development/compilers/helium) {
|
|
|
|
inherit fetchurl stdenv ghc;
|
|
|
|
};
|
|
|
|
|
2004-06-09 15:23:05 +01:00
|
|
|
harp = (import ../development/compilers/harp) {
|
|
|
|
inherit fetchurl stdenv unzip ghc happy;
|
|
|
|
};
|
|
|
|
|
2004-09-26 19:12:51 +01:00
|
|
|
nasm = (import ../development/compilers/nasm) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-06-02 10:56:10 +01:00
|
|
|
visualcpp = import ../development/compilers/visual-c++ {
|
2006-06-05 20:26:11 +01:00
|
|
|
inherit fetchurl stdenv cabextract;
|
2006-06-02 10:56:10 +01:00
|
|
|
};
|
|
|
|
|
2006-06-05 20:40:14 +01:00
|
|
|
windowssdk = import ../development/misc/windows-sdk {
|
|
|
|
inherit fetchurl stdenv cabextract;
|
|
|
|
};
|
|
|
|
|
2006-06-02 11:09:19 +01:00
|
|
|
win32hello = import ../development/compilers/visual-c++/test {
|
2006-06-05 23:03:52 +01:00
|
|
|
inherit fetchurl stdenv visualcpp windowssdk;
|
2006-06-02 11:09:19 +01:00
|
|
|
};
|
|
|
|
|
2006-06-02 10:56:10 +01:00
|
|
|
|
2005-11-22 12:05:36 +00:00
|
|
|
### DEVELOPMENT / DEBUGGERS
|
|
|
|
|
2005-11-22 12:59:45 +00:00
|
|
|
#ltrace = (import ../development/debuggers/ltrace) {
|
|
|
|
# inherit fetchurl stdenv;
|
|
|
|
#};
|
2005-11-22 12:05:36 +00:00
|
|
|
|
2006-06-02 10:56:10 +01:00
|
|
|
|
2005-09-11 16:38:59 +01:00
|
|
|
### DEVELOPMENT / INTERPRETERS
|
|
|
|
|
|
|
|
happy = (import ../development/tools/parsing/happy) {
|
|
|
|
inherit fetchurl stdenv perl ghc;
|
|
|
|
};
|
|
|
|
|
2004-07-01 17:57:31 +01:00
|
|
|
realPerl = (import ../development/interpreters/perl) {
|
2004-09-18 18:23:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 22:04:09 +00:00
|
|
|
};
|
|
|
|
|
2004-07-01 17:57:31 +01:00
|
|
|
sysPerl = (import ../development/interpreters/sys-perl) {
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2005-05-10 13:59:28 +01:00
|
|
|
perl = if stdenv.system != "i686-linux" then sysPerl else realPerl;
|
2004-07-01 17:57:31 +01:00
|
|
|
|
2004-02-12 13:18:24 +00:00
|
|
|
python = (import ../development/interpreters/python) {
|
2004-02-17 20:03:12 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2004-01-24 22:50:47 +00:00
|
|
|
};
|
|
|
|
|
2005-05-05 00:36:28 +01:00
|
|
|
ruby = (import ../development/interpreters/ruby) {
|
2006-05-11 01:16:23 +01:00
|
|
|
inherit fetchurl stdenv readline ncurses;
|
2005-05-05 00:36:28 +01:00
|
|
|
};
|
|
|
|
|
2006-06-23 21:11:36 +01:00
|
|
|
spidermonkey = import ../development/interpreters/spidermonkey {
|
|
|
|
inherit fetchurl;
|
|
|
|
# remove when the "internal compiler error" in gcc 4.1.x is fixed
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2006-04-26 15:47:16 +01:00
|
|
|
};
|
|
|
|
|
2006-02-02 17:07:07 +00:00
|
|
|
lua4 = (import ../development/interpreters/lua-4) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
lua5 = (import ../development/interpreters/lua-5) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-22 12:05:36 +00:00
|
|
|
tcl = (import ../development/interpreters/tcl) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-11-19 17:47:17 +00: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 11:44:21 +01:00
|
|
|
clisp = (import ../development/interpreters/clisp) {
|
|
|
|
inherit fetchurl stdenv libsigsegv gettext;
|
|
|
|
};
|
|
|
|
|
2006-04-22 12:19:37 +01:00
|
|
|
# FIXME: unixODBC needs patching on Darwin (see darwinports)
|
2005-09-11 23:39:06 +01:00
|
|
|
php = (import ../development/interpreters/php) {
|
2006-04-22 12:19:37 +01:00
|
|
|
inherit stdenv fetchurl flex bison libxml2 apacheHttpd;
|
|
|
|
unixODBC =
|
2006-07-17 12:07:32 +01:00
|
|
|
if stdenv.isDarwin then null else unixODBC;
|
2005-09-11 23:39:06 +01:00
|
|
|
};
|
|
|
|
|
2005-02-26 23:45:19 +00:00
|
|
|
guile = (import ../development/interpreters/guile) {
|
|
|
|
inherit fetchurl stdenv ncurses readline;
|
|
|
|
};
|
|
|
|
|
2005-09-18 00:58:51 +01:00
|
|
|
jre = (import ../development/interpreters/jre) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 23:46:00 +00:00
|
|
|
};
|
|
|
|
|
2004-08-23 18:06:50 +01:00
|
|
|
kaffe = (import ../development/interpreters/kaffe) {
|
|
|
|
inherit fetchurl stdenv jikes alsaLib xlibs;
|
|
|
|
};
|
|
|
|
|
2004-08-24 12:38:40 +01:00
|
|
|
apacheAnt14 = (import ../development/tools/build-managers/apache-ant) {
|
2005-10-10 01:55:07 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
jdk = j2sdk14x;
|
2005-09-18 00:58:51 +01:00
|
|
|
name = "ant-jdk-1.4.2";
|
2004-08-10 12:07:50 +01:00
|
|
|
};
|
|
|
|
|
2004-08-24 12:38:40 +01:00
|
|
|
apacheAntBlackdown14 = (import ../development/tools/build-managers/apache-ant) {
|
2004-08-24 12:26:26 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-09-18 00:58:51 +01:00
|
|
|
jdk = blackdown;
|
2005-03-15 15:16:40 +00:00
|
|
|
name = "ant-blackdown-1.4.2";
|
2004-08-24 12:26:26 +01:00
|
|
|
};
|
|
|
|
|
2005-09-18 00:58:51 +01:00
|
|
|
apacheAnt = (import ../development/tools/build-managers/apache-ant) {
|
|
|
|
inherit fetchurl stdenv jdk;
|
|
|
|
name = "ant-jdk-1.5.0";
|
2004-08-24 12:26:26 +01:00
|
|
|
};
|
2004-08-20 11:14:55 +01:00
|
|
|
|
2005-09-12 15:44:19 +01:00
|
|
|
dovecot = (import ../servers/mail/dovecot) {
|
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
};
|
2005-09-12 16:20:57 +01:00
|
|
|
|
|
|
|
vsftpd = (import ../servers/ftp/vsftpd) {
|
|
|
|
inherit fetchurl stdenv openssl ;
|
|
|
|
};
|
|
|
|
|
2004-08-20 11:14:55 +01:00
|
|
|
tomcat5 = (import ../servers/http/tomcat) {
|
2004-08-25 10:33:43 +01:00
|
|
|
inherit fetchurl stdenv ;
|
2005-09-18 00:58:51 +01:00
|
|
|
jdk = blackdown;
|
2004-01-25 00:50:00 +00:00
|
|
|
};
|
|
|
|
|
2005-12-19 18:56:31 +00:00
|
|
|
beecrypt = (import ../development/libraries/beecrypt) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2005-05-09 16:56:34 +01:00
|
|
|
cil = (import ../development/libraries/cil) {
|
|
|
|
inherit stdenv fetchurl ocaml perl;
|
|
|
|
};
|
|
|
|
|
2006-01-09 12:35:29 +00:00
|
|
|
cilaterm = (import ../development/libraries/cil-aterm) {
|
2006-01-02 14:24:36 +00:00
|
|
|
inherit stdenv fetchurl ocaml perl;
|
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
pcre = (import ../development/libraries/pcre) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-06-21 22:05:39 +01:00
|
|
|
coredumper = (import ../development/libraries/coredumper) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-07-10 16:42:19 +01:00
|
|
|
glibc = useFromStdenv (stdenv ? glibc) stdenv.glibc
|
|
|
|
(import ../development/libraries/glibc {
|
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
|
|
|
installLocales = true;
|
|
|
|
});
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
aterm = (import ../development/libraries/aterm) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2005-05-18 17:50:14 +01:00
|
|
|
sdf = (import ../development/tools/parsing/sdf) {
|
2006-06-23 21:11:36 +01:00
|
|
|
inherit fetchurl aterm getopt pkgconfig;
|
|
|
|
# Note: sdf2-bundle currently requires GNU make 3.80; remove
|
|
|
|
# explicit dependency when this is fixed.
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2004-01-22 19:09:49 +00:00
|
|
|
};
|
|
|
|
|
2006-03-14 18:20:21 +00:00
|
|
|
jikespg = (import ../development/tools/parsing/jikespg) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
expat = (import ../development/libraries/expat) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
2005-01-19 21:12:46 +00:00
|
|
|
libcdaudio = (import ../development/libraries/libcdaudio) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-01-19 21:48:45 +00:00
|
|
|
libogg = (import ../development/libraries/libogg) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
libvorbis = (import ../development/libraries/libvorbis) {
|
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
|
|
|
|
2006-01-07 17:25:39 +00:00
|
|
|
libusb = (import ../development/libraries/libusb) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-22 22:32:18 +00:00
|
|
|
speex = (import ../development/libraries/speex) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-02-16 16:18:43 +00:00
|
|
|
libtheora = (import ../development/libraries/libtheora) {
|
|
|
|
inherit fetchurl stdenv libogg libvorbis;
|
|
|
|
};
|
|
|
|
|
2005-10-26 22:10:31 +01:00
|
|
|
libwpd = (import ../development/libraries/libwpd) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libgsf libxml2;
|
|
|
|
inherit (gnome) glib;
|
|
|
|
};
|
|
|
|
|
|
|
|
libgsf = (import ../development/libraries/libgsf) {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig libxml2;
|
|
|
|
inherit (gnome) glib;
|
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
2004-08-19 16:28:48 +01:00
|
|
|
inherit fetchurl stdenv zlib python;
|
2005-06-17 21:21:29 +01:00
|
|
|
# pythonSupport = stdenv.system == "i686-linux";
|
|
|
|
pythonSupport = false;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
libxslt = (import ../development/libraries/libxslt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libxml2;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
gettext = (import ../development/libraries/gettext) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
db4 = (import ../development/libraries/db4) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
openssl = (import ../development/libraries/openssl) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-05 12:17:48 +00:00
|
|
|
};
|
|
|
|
|
2005-10-26 22:10:31 +01:00
|
|
|
libmspack = (import ../development/libraries/libmspack) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
libsndfile = (import ../development/libraries/libsndfile) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
neon = (import ../development/libraries/neon) {
|
|
|
|
inherit fetchurl stdenv libxml2;
|
|
|
|
};
|
|
|
|
|
2005-08-24 10:54:42 +01:00
|
|
|
nss = (import ../development/libraries/nss) {
|
|
|
|
inherit fetchurl stdenv perl zip;
|
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
freetype = (import ../development/libraries/freetype) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2006-07-08 13:44:39 +01:00
|
|
|
fribidi = (import ../development/libraries/fribidi) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-09-18 18:58:42 +01:00
|
|
|
zlib = (import ../development/libraries/zlib) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
|
|
|
libjpeg = (import ../development/libraries/libjpeg) {
|
2006-07-14 16:59:30 +01:00
|
|
|
inherit fetchurl stdenv libtool;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libtiff = (import ../development/libraries/libtiff) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv zlib libjpeg;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libpng = (import ../development/libraries/libpng) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2005-08-24 15:26:32 +01:00
|
|
|
aalib = (import ../development/libraries/aalib) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2006-04-03 14:02:05 +01:00
|
|
|
axis = (import ../development/libraries/axis) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-08-24 16:02:30 +01:00
|
|
|
libcaca = (import ../development/libraries/libcaca) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2004-08-23 10:35:36 +01:00
|
|
|
libsigsegv = (import ../development/libraries/libsigsegv) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 10:46:20 +00:00
|
|
|
libexif = (import ../development/libraries/libexif) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 10:55:21 +00:00
|
|
|
sqlite = (import ../development/libraries/sqlite) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-04-22 19:08:37 +01:00
|
|
|
sqlite3 = (import ../development/libraries/sqlite-3.3) {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2005-03-11 11:02:31 +00:00
|
|
|
lcms = (import ../development/libraries/lcms) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-03-11 11:08:38 +00:00
|
|
|
libgphoto2 = (import ../development/libraries/libgphoto2) {
|
2006-01-31 14:07:25 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig libusb;
|
2005-03-11 11:08:38 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
popt = (import ../development/libraries/popt) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv gettext;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2005-12-26 15:56:00 +00:00
|
|
|
slang = (import ../development/libraries/slang) {
|
|
|
|
inherit fetchurl stdenv pcre libpng;
|
|
|
|
};
|
|
|
|
|
2005-10-12 12:57:24 +01:00
|
|
|
cairo = (import ../development/libraries/cairo) {
|
2005-11-04 13:07:22 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig x11 fontconfig freetype zlib libpng;
|
2005-10-12 12:57:24 +01:00
|
|
|
};
|
|
|
|
|
2006-03-23 16:47:34 +00:00
|
|
|
gtkLibs = recurseIntoAttrs gtkLibs28;
|
2005-10-12 12:57:24 +01:00
|
|
|
|
2006-07-04 17:58:25 +01:00
|
|
|
gtkLibs210 = import ../development/libraries/gtk-libs-2.10 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng cairo;
|
|
|
|
inherit (xlibs) libXinerama libXrandr;
|
|
|
|
xineramaSupport = true;
|
|
|
|
};
|
|
|
|
|
2005-10-12 12:57:24 +01:00
|
|
|
gtkLibs28 = import ../development/libraries/gtk-libs-2.8 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng cairo;
|
2005-10-29 21:35:56 +01:00
|
|
|
inherit (xlibs) libXinerama;
|
|
|
|
xineramaSupport = true;
|
2005-10-12 12:57:24 +01:00
|
|
|
};
|
2005-02-15 16:22:20 +00:00
|
|
|
|
|
|
|
gtkLibs26 = import ../development/libraries/gtk-libs-2.6 {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
|
|
|
|
2005-02-26 23:45:19 +00:00
|
|
|
gtkLibs24 = import ../development/libraries/gtk-libs-2.4 {
|
2005-02-15 16:22:20 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
|
|
|
};
|
2004-04-05 15:09:01 +01:00
|
|
|
gtkLibs22 = import ../development/libraries/gtk-libs-2.2 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
|
|
|
};
|
|
|
|
|
2004-04-05 14:42:41 +01:00
|
|
|
gtkLibs1x = import ../development/libraries/gtk-libs-1.x {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv x11 libtiff libjpeg libpng;
|
2003-11-06 16:28:57 +00:00
|
|
|
};
|
|
|
|
|
2005-09-07 15:57:30 +01:00
|
|
|
gtkmm = import ../development/libraries/gtk-libs-2.6/gtkmm {
|
|
|
|
inherit fetchurl stdenv pkgconfig libsigcxx;
|
|
|
|
inherit (gtkLibs26) gtk atk;
|
|
|
|
inherit glibmm;
|
|
|
|
};
|
|
|
|
|
|
|
|
glibmm = import ../development/libraries/gtk-libs-2.6/glibmm {
|
|
|
|
inherit fetchurl stdenv pkgconfig libsigcxx;
|
|
|
|
inherit (gtkLibs26) glib;
|
|
|
|
};
|
|
|
|
|
|
|
|
libsigcxx = import ../development/libraries/libsigcxx {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
};
|
|
|
|
|
2005-08-13 22:35:49 +01:00
|
|
|
pangoxsl = (import ../development/libraries/pangoxsl) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib pango;
|
|
|
|
};
|
|
|
|
|
2006-06-17 23:04:42 +01:00
|
|
|
qt3NoMySQL = import ../development/libraries/qt-3 {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql;
|
|
|
|
inherit (xlibs) libXft libXrender;
|
|
|
|
mysqlSupport = false;
|
|
|
|
};
|
|
|
|
|
2005-01-19 23:27:35 +00:00
|
|
|
qt3 = import ../development/libraries/qt-3 {
|
2005-01-22 00:19:27 +00:00
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql;
|
2005-01-19 22:51:27 +00:00
|
|
|
inherit (xlibs) libXft libXrender;
|
|
|
|
};
|
|
|
|
|
2005-11-12 14:52:16 +00:00
|
|
|
kdelibs = import ../development/libraries/kde/kdelibs {
|
2006-01-31 15:22:10 +00:00
|
|
|
inherit
|
|
|
|
fetchurl stdenv zlib perl openssl pcre pkgconfig
|
|
|
|
libjpeg libpng libtiff libxml2 libxslt libtool
|
|
|
|
expat freetype;
|
2005-11-12 14:52:16 +00:00
|
|
|
inherit (xlibs) libX11 libXt libXext;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
|
|
|
|
2005-03-09 17:49:19 +00: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 21:00:12 +01:00
|
|
|
libgnomeprintui GConf;
|
2005-03-09 17:49:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gtksharp2 = (import ../development/libraries/gtk-sharp-2) {
|
2005-03-03 17:19:58 +00:00
|
|
|
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
|
2005-02-26 23:45:19 +00:00
|
|
|
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeui libgnomeprint
|
2005-06-17 21:00:12 +01:00
|
|
|
libgnomeprintui GConf gnomepanel;
|
2005-02-26 23:45:19 +00:00
|
|
|
};
|
|
|
|
|
2005-03-08 15:44:23 +00:00
|
|
|
gtksourceviewsharp = import ../development/libraries/gtksourceview-sharp {
|
2005-03-09 17:49:19 +00:00
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
2005-03-08 15:44:23 +00:00
|
|
|
inherit (gnome) gtksourceview;
|
2005-03-09 17:49:19 +00:00
|
|
|
gtksharp = gtksharp2;
|
2005-03-08 15:44:23 +00:00
|
|
|
};
|
|
|
|
|
2005-03-09 17:49:19 +00:00
|
|
|
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
2005-03-08 18:52:35 +00:00
|
|
|
inherit (gnome) gtk;
|
2005-03-09 17:49:19 +00:00
|
|
|
gtksharp = gtksharp2;
|
2005-03-08 18:52:35 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
audiofile = (import ../development/libraries/audiofile) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2006-03-23 16:47:34 +00:00
|
|
|
gnome = recurseIntoAttrs (import ../development/libraries/gnome {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig audiofile
|
2005-06-17 14:52:24 +01:00
|
|
|
flex bison popt zlib libxml2 libxslt
|
2005-03-10 11:36:46 +00:00
|
|
|
perl perlXMLParser docbook_xml_dtd_42 gettext x11
|
2005-02-27 02:16:21 +00:00
|
|
|
libtiff libjpeg libpng gtkLibs;
|
2005-03-08 18:52:35 +00:00
|
|
|
inherit (xlibs) libXmu;
|
2006-03-23 16:47:34 +00:00
|
|
|
});
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2005-10-19 16:15:37 +01:00
|
|
|
wxGTK = wxGTK26;
|
|
|
|
|
|
|
|
wxGTK26 = (import ../development/libraries/wxGTK-2.6) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama;
|
|
|
|
};
|
|
|
|
|
|
|
|
wxGTK25 = (import ../development/libraries/wxGTK-2.5) {
|
2004-09-21 16:31:23 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama;
|
|
|
|
};
|
|
|
|
|
|
|
|
wxGTK24 = (import ../development/libraries/wxGTK) {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
2004-04-05 15:09:01 +01:00
|
|
|
inherit (gtkLibs22) gtk;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gnet = (import ../development/libraries/gnet) {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
2003-11-07 11:18:47 +00:00
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
|
2003-12-03 21:58:16 +00:00
|
|
|
libdvdcss = (import ../development/libraries/libdvdcss) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libdvdread = (import ../development/libraries/libdvdread) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv libdvdcss;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
2006-06-30 00:48:19 +01:00
|
|
|
libdvdnav = import ../development/libraries/libdvdnav {
|
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mpeg2dec = (import ../development/libraries/mpeg2dec) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
a52dec = (import ../development/libraries/a52dec) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
libmad = (import ../development/libraries/libmad) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
2006-06-29 13:41:25 +01:00
|
|
|
ffmpeg = import ../development/libraries/ffmpeg {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-01-25 08:51:03 +00:00
|
|
|
zvbi = (import ../development/libraries/zvbi) {
|
2004-03-27 21:59:31 +00:00
|
|
|
inherit fetchurl stdenv libpng x11;
|
2004-01-25 08:51:03 +00:00
|
|
|
pngSupport = true;
|
|
|
|
};
|
|
|
|
|
2004-06-21 21:41:32 +01:00
|
|
|
rte = (import ../development/libraries/rte) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-12-10 23:16:23 +00:00
|
|
|
xineLib = (import ../development/libraries/xine-lib) {
|
|
|
|
inherit fetchurl stdenv zlib x11 libdvdcss alsaLib;
|
|
|
|
inherit (xlibs) libXv libXinerama;
|
|
|
|
};
|
|
|
|
|
2004-03-05 10:13:23 +00:00
|
|
|
ncurses = (import ../development/libraries/ncurses) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-04 13:07:22 +00:00
|
|
|
fontconfig = import ../development/libraries/fontconfig {
|
|
|
|
inherit fetchurl stdenv freetype expat;
|
|
|
|
};
|
|
|
|
|
2005-11-12 17:05:51 +00:00
|
|
|
xlibsWrapper = import ../development/libraries/xlibs-wrapper {
|
|
|
|
inherit stdenv;
|
|
|
|
packages = [
|
|
|
|
freetype fontconfig xlibs.xproto xlibs.libX11 xlibs.libXt
|
|
|
|
xlibs.libXft xlibs.libXext xlibs.libSM xlibs.libICE
|
|
|
|
xlibs.xextproto
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
Xaw3d = import ../development/libraries/Xaw3d {
|
|
|
|
inherit fetchurl stdenv x11 bison;
|
|
|
|
flex = flexnew;
|
2006-01-11 15:06:09 +00:00
|
|
|
inherit (xlibs) imake gccmakedep libXmu libXpm libXp;
|
2005-11-12 17:05:51 +00:00
|
|
|
};
|
2005-11-01 20:27:57 +00:00
|
|
|
|
|
|
|
libdrm = import ../development/libraries/libdrm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-03 20:00:43 +00:00
|
|
|
libpcap = (import ../development/libraries/libpcap) {
|
|
|
|
inherit fetchurl stdenv flex bison;
|
|
|
|
};
|
|
|
|
|
2004-06-09 18:53:30 +01:00
|
|
|
mesa = (import ../development/libraries/mesa) {
|
2006-01-17 12:43:23 +00:00
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXmu libXi;
|
2004-06-09 18:53:30 +01:00
|
|
|
};
|
|
|
|
|
2004-04-06 18:47:34 +01:00
|
|
|
chmlib = (import ../development/libraries/chmlib) {
|
2006-06-24 12:05:39 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-04-06 18:47:34 +01:00
|
|
|
};
|
|
|
|
|
2005-08-30 08:39:38 +01:00
|
|
|
dclib = (import ../development/libraries/dclib) {
|
|
|
|
inherit fetchurl stdenv libxml2 openssl;
|
|
|
|
};
|
|
|
|
|
2005-10-25 14:54:52 +01:00
|
|
|
cracklib = (import ../development/libraries/cracklib) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-12-19 10:34:01 +00:00
|
|
|
libgpgerror = (import ../development/libraries/libgpg-error) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
gpgme = (import ../development/libraries/gpgme) {
|
|
|
|
inherit fetchurl stdenv libgpgerror gnupg;
|
|
|
|
};
|
|
|
|
|
2006-01-26 14:01:08 +00:00
|
|
|
openal = import ../development/libraries/openal {
|
|
|
|
inherit fetchurl stdenv alsaLib autoconf automake libtool;
|
|
|
|
};
|
|
|
|
|
2006-03-15 12:43:40 +00:00
|
|
|
unixODBC = import ../development/libraries/unixODBC {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-03-15 15:59:20 +00:00
|
|
|
mysqlConnectorODBC = import ../development/libraries/mysql-connector-odbc {
|
|
|
|
inherit fetchurl stdenv mysql libtool zlib unixODBC;
|
|
|
|
};
|
|
|
|
|
2006-04-22 19:08:37 +01:00
|
|
|
clearsilver = import ../development/libraries/clearsilver {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
|
|
|
|
2005-09-11 16:38:59 +01:00
|
|
|
### DEVELOPMENT / LIBRARIES / JAVA
|
|
|
|
|
|
|
|
saxon = (import ../development/libraries/java/saxon) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
saxonb = (import ../development/libraries/java/saxon/default8.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
sharedobjects = (import ../development/libraries/java/shared-objects) {
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit fetchurl stdenv jdk;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
jjtraveler = (import ../development/libraries/java/jjtraveler) {
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit fetchurl stdenv jdk;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
atermjava = (import ../development/libraries/java/aterm) {
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit fetchurl stdenv sharedobjects jjtraveler jdk;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
jakartaregexp = (import ../development/libraries/java/jakarta-regexp) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
jakartabcel = (import ../development/libraries/java/jakarta-bcel) {
|
|
|
|
regexp = jakartaregexp;
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
jclasslib = (import ../development/tools/java/jclasslib) {
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit fetchurl stdenv xpf jre;
|
2005-09-11 16:38:59 +01:00
|
|
|
ant = apacheAnt14;
|
|
|
|
};
|
|
|
|
|
|
|
|
lucene = import ../development/libraries/java/lucene {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
jdom = import ../development/libraries/java/jdom {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
javaCup = import ../development/libraries/java/cup {
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit stdenv fetchurl jdk;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
jflex = import ../development/libraries/java/jflex {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
junit = import ../development/libraries/java/junit {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl unzip;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
2005-10-03 09:17:09 +01:00
|
|
|
javasvn = import ../development/libraries/java/javasvn {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl unzip;
|
2005-10-03 09:17:09 +01:00
|
|
|
};
|
|
|
|
|
2005-09-11 16:38:59 +01:00
|
|
|
httpunit = import ../development/libraries/java/httpunit {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl unzip;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mockobjects = import ../development/libraries/java/mockobjects {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
commonsFileUpload = import ../development/libraries/java/jakarta-commons/file-upload {
|
2005-12-26 00:51:24 +00:00
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
|
|
|
swt = import ../development/libraries/java/swt {
|
|
|
|
inherit stdenv fetchurl unzip jdk pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXtst;
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
2006-04-25 14:12:45 +01:00
|
|
|
xalanj = import ../development/libraries/java/xalanj {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2006-01-25 11:19:21 +00:00
|
|
|
### DEVELOPMENT / LIBRARIES / HASKELL
|
|
|
|
|
|
|
|
uulib = import ../development/libraries/haskell/uulib {
|
|
|
|
inherit stdenv fetchurl ghc;
|
|
|
|
};
|
2006-01-30 11:18:38 +00:00
|
|
|
|
2005-09-11 16:38:59 +01:00
|
|
|
### DEVELOPMENT / PERL MODULES
|
|
|
|
|
2005-03-10 12:49:37 +00:00
|
|
|
perlBerkeleyDB = import ../development/perl-modules/BerkeleyDB {
|
|
|
|
inherit fetchurl perl db4;
|
2003-12-21 20:52:13 +00:00
|
|
|
};
|
|
|
|
|
2005-03-10 12:49:37 +00:00
|
|
|
perlXMLParser = import ../development/perl-modules/XML-Parser {
|
|
|
|
inherit fetchurl perl expat;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2005-10-26 22:10:31 +01:00
|
|
|
perlArchiveZip = import ../development/perl-modules/Archive-Zip {
|
|
|
|
inherit fetchurl perl;
|
|
|
|
};
|
|
|
|
|
|
|
|
perlCompressZlib = import ../development/perl-modules/Compress-Zlib {
|
|
|
|
inherit fetchurl perl;
|
|
|
|
};
|
|
|
|
|
2005-03-07 13:27:28 +00:00
|
|
|
perlXMLLibXML = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-LibXML-1.58";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-LibXML-1.58.tar.gz;
|
2005-03-07 13:27:28 +00: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 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-LibXML-Common-0.13.tar.gz;
|
2005-03-07 13:27:28 +00:00
|
|
|
md5 = "13b6d93f53375d15fd11922216249659";
|
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLSAX = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-SAX-0.12";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-SAX-0.12.tar.gz;
|
2005-03-07 13:27:28 +00:00
|
|
|
md5 = "bff58bd077a9693fc8cf32e2b95f571f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLNamespaceSupport];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLNamespaceSupport = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-NamespaceSupport-1.08";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-NamespaceSupport-1.08.tar.gz;
|
2005-03-07 13:27:28 +00:00
|
|
|
md5 = "81bd5ae772906d0579c10061ed735dc8";
|
|
|
|
};
|
|
|
|
buildInputs = [];
|
|
|
|
};
|
|
|
|
|
2005-01-22 00:19:27 +00:00
|
|
|
perlXMLTwig = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Twig-3.15";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Twig-3.15.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "b26886b8bd19761fff37b23e4964b499";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLWriter = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Writer-0.520";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Writer-0.520.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "0a194acc70c906c0be32f4b2b7a9f689";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2005-03-07 13:27:28 +00:00
|
|
|
perlXMLSimple = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Simple-2.14";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Simple-2.14.tar.gz;
|
2005-03-07 13:27:28 +00:00
|
|
|
md5 = "f321058271815de28d214c8efb9091f9";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
|
|
|
|
2005-01-22 00:19:27 +00:00
|
|
|
perlTermReadKey = import ../development/perl-modules/generic perl {
|
|
|
|
name = "TermReadKey-2.30";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/TermReadKey-2.30.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "f0ef2cea8acfbcc58d865c05b0c7e1ff";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlDateManip = import ../development/perl-modules/generic perl {
|
|
|
|
name = "DateManip-5.42a";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/DateManip-5.42a.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "648386bbf46d021ae283811f75b07bdf";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLTree = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Tree-3.18";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Tree-3.18.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "6a9e4e565648c9772e7d8ec6d4392497";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLParser = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Parser-3.45";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Parser-3.45.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "c2ac1379ac5848dd32e24347cd679391";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLTagset = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Tagset-3.04";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Tagset-3.04.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "b82e0f08c1ececefe98b891f30dd56a6";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlURI = import ../development/perl-modules/generic perl {
|
|
|
|
name = "URI-1.35";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/URI-1.35.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "1a933b1114c41a25587ee59ba8376f7c";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlLWP = import ../development/perl-modules/generic perl {
|
|
|
|
name = "libwww-perl-5.803";
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/libwww-perl-5.803.tar.gz;
|
2005-01-22 00:19:27 +00:00
|
|
|
md5 = "3345d5f15a4f42350847254141725c8f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlURI perlHTMLParser];
|
|
|
|
};
|
|
|
|
|
2005-05-18 22:15:29 +01:00
|
|
|
perlLocaleGettext = import ../development/perl-modules/generic perl {
|
|
|
|
name = "LocaleGettext-1.04";
|
|
|
|
src = fetchurl {
|
2006-01-30 16:04:03 +00:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gettext-1.04.tar.gz;
|
2005-05-18 22:15:29 +01:00
|
|
|
md5 = "578dd0c76f8673943be043435b0fbde4";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-02-17 12:03:04 +00:00
|
|
|
perlDigestSHA1 = import ../development/perl-modules/generic perl {
|
|
|
|
name = "Digest-SHA1-2.11";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.11.tar.gz;
|
|
|
|
md5 = "2449bfe21d6589c96eebf94dae24df6b";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlCGISession = import ../development/perl-modules/generic perl {
|
|
|
|
name = "CGI-Session-3.95";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/CGI-Session-3.95.tar.gz;
|
|
|
|
md5 = "fe9e46496c7c711c54ca13209ded500b";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2004-09-22 11:18:02 +01:00
|
|
|
wxPython = (import ../development/python-modules/wxPython-2.5) {
|
2004-04-02 16:36:14 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig wxGTK python;
|
2004-02-17 19:19:26 +00:00
|
|
|
};
|
|
|
|
|
2004-09-22 11:18:02 +01:00
|
|
|
wxPython24 = (import ../development/python-modules/wxPython) {
|
|
|
|
inherit fetchurl stdenv pkgconfig python;
|
|
|
|
wxGTK = wxGTK24;
|
|
|
|
};
|
|
|
|
|
2005-04-22 19:26:04 +01:00
|
|
|
pygtk = (import ../development/python-modules/pygtk) {
|
|
|
|
inherit fetchurl stdenv python pkgconfig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
2005-10-02 15:54:58 +01:00
|
|
|
readline4 = (import ../development/libraries/readline/readline4.nix) {
|
2004-08-05 14:49:26 +01:00
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2005-10-02 15:54:58 +01:00
|
|
|
readline5 = (import ../development/libraries/readline/readline5.nix) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
|
|
|
readline = readline5;
|
|
|
|
|
2004-09-26 19:12:51 +01:00
|
|
|
SDL = (import ../development/libraries/SDL) {
|
2006-01-26 14:01:08 +00:00
|
|
|
inherit fetchurl stdenv x11 mesa;
|
|
|
|
openglSupport = true;
|
2004-09-26 19:12:51 +01:00
|
|
|
};
|
|
|
|
|
2004-11-19 17:47:17 +00:00
|
|
|
boehmgc = (import ../development/libraries/boehm-gc) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 16:28:57 +00:00
|
|
|
|
2005-12-02 22:49:51 +00:00
|
|
|
lesstif = (import ../development/libraries/lesstif) {
|
|
|
|
inherit fetchurl stdenv x11;
|
2006-04-29 15:18:08 +01:00
|
|
|
inherit (xlibs) libXp libXau;
|
2005-12-02 22:49:51 +00:00
|
|
|
};
|
|
|
|
|
2005-12-02 23:21:40 +00:00
|
|
|
t1lib = (import ../development/libraries/t1lib) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXaw;
|
|
|
|
};
|
|
|
|
|
2006-07-22 12:22:41 +01:00
|
|
|
tk = import ../development/libraries/tk {
|
|
|
|
inherit fetchurl stdenv tcl x11;
|
|
|
|
};
|
|
|
|
|
2006-02-02 14:12:31 +00:00
|
|
|
id3lib = import ../development/libraries/id3lib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-02-02 15:04:04 +00:00
|
|
|
taglib = import ../development/libraries/taglib {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
|
|
|
libmpcdec = import ../development/libraries/libmpcdec {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-05-07 22:58:31 +01:00
|
|
|
gmime = import ../development/libraries/gmime {
|
|
|
|
inherit fetchurl stdenv pkgconfig zlib;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2005-03-10 11:40:16 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
### SERVERS
|
|
|
|
|
|
|
|
apacheHttpd = (import ../servers/http/apache-httpd) {
|
2006-02-28 12:01:39 +00:00
|
|
|
inherit fetchurl stdenv perl openssl db4 expat zlib;
|
2003-11-05 12:17:48 +00:00
|
|
|
sslSupport = true;
|
|
|
|
db4Support = true;
|
|
|
|
};
|
|
|
|
|
2006-01-15 12:03:00 +00:00
|
|
|
mod_python = import ../servers/http/apache-modules/mod_python {
|
|
|
|
inherit fetchurl stdenv apacheHttpd python;
|
|
|
|
};
|
|
|
|
|
2006-03-23 16:47:34 +00:00
|
|
|
xorg = recurseIntoAttrs (import ../servers/x11/xorg {
|
2005-11-04 13:07:22 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig freetype fontconfig
|
2005-11-02 20:59:25 +00:00
|
|
|
expat libdrm libpng zlib perl mesa;
|
2006-03-23 16:47:34 +00:00
|
|
|
});
|
2005-11-02 20:59:25 +00:00
|
|
|
|
2004-08-24 12:38:40 +01:00
|
|
|
postgresql = (import ../servers/sql/postgresql) {
|
2004-08-24 13:02:07 +01:00
|
|
|
inherit fetchurl stdenv readline ncurses zlib;
|
2004-08-24 12:38:40 +01:00
|
|
|
};
|
|
|
|
|
2005-05-24 16:32:57 +01:00
|
|
|
postgresql_jdbc = (import ../servers/sql/postgresql/jdbc) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ant = apacheAntBlackdown14;
|
|
|
|
};
|
|
|
|
|
2005-01-21 19:25:57 +00:00
|
|
|
mysql = import ../servers/sql/mysql {
|
|
|
|
inherit fetchurl stdenv ncurses zlib perl;
|
|
|
|
ps = procps; /* !!! Linux only */
|
2005-01-21 18:24:25 +00:00
|
|
|
};
|
|
|
|
|
2006-03-29 18:07:20 +01:00
|
|
|
mysql_jdbc = import ../servers/sql/mysql/jdbc {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ant = apacheAntBlackdown14;
|
|
|
|
};
|
|
|
|
|
2004-08-30 19:22:14 +01:00
|
|
|
jetty = (import ../servers/http/jetty) {
|
2005-05-24 15:57:41 +01:00
|
|
|
inherit fetchurl stdenv unzip;
|
2004-08-30 19:22:14 +01:00
|
|
|
};
|
|
|
|
|
2004-09-26 19:12:51 +01:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
### OS-SPECIFIC
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2005-12-31 14:35:49 +00:00
|
|
|
uclibcArm = (import ../development/uclibc) {
|
2006-03-06 16:13:54 +00:00
|
|
|
inherit fetchurl stdenv mktemp;
|
2005-12-31 14:35:49 +00:00
|
|
|
kernelHeadersCross = kernelHeadersArm;
|
|
|
|
binutilsCross = binutilsArm;
|
|
|
|
gccCross = gcc40arm;
|
|
|
|
cross = "arm-linux";
|
|
|
|
};
|
|
|
|
|
|
|
|
uclibcMips = (import ../development/uclibc) {
|
2006-03-02 18:17:45 +00:00
|
|
|
inherit fetchurl stdenv mktemp;
|
2005-12-31 14:35:49 +00:00
|
|
|
kernelHeadersCross = kernelHeadersMips;
|
|
|
|
binutilsCross = binutilsMips;
|
2006-03-01 19:11:42 +00:00
|
|
|
gccCross = gcc40mipsboot;
|
2005-12-31 14:35:49 +00:00
|
|
|
cross = "mips-linux";
|
2005-11-29 01:43:11 +00:00
|
|
|
};
|
|
|
|
|
2005-12-31 16:30:47 +00:00
|
|
|
#uclibcSparc = (import ../development/uclibc) {
|
2006-03-06 16:13:54 +00:00
|
|
|
# inherit fetchurl stdenv mktemp;
|
2005-12-31 16:30:47 +00:00
|
|
|
# kernelHeadersCross = kernelHeadersSparc;
|
|
|
|
# binutilsCross = binutilsSparc;
|
|
|
|
# gccCross = gcc40sparc;
|
|
|
|
# cross = "sparc-linux";
|
|
|
|
#};
|
|
|
|
|
2005-08-28 00:05:50 +01:00
|
|
|
dietlibc = (import ../os-specific/linux/dietlibc) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-12-31 03:46:20 +00:00
|
|
|
#dietlibcArm = (import ../os-specific/linux/dietlibc-cross) {
|
|
|
|
# inherit fetchurl stdenv;
|
|
|
|
# gccCross = gcc40arm;
|
|
|
|
# binutilsCross = binutilsArm;
|
|
|
|
# arch = "arm";
|
|
|
|
#};
|
|
|
|
|
2005-08-28 01:19:42 +01:00
|
|
|
dietlibcWrapper = (import ../os-specific/linux/dietlibc-wrapper) {
|
|
|
|
inherit stdenv dietlibc;
|
|
|
|
gcc = stdenv.gcc;
|
|
|
|
};
|
|
|
|
|
2005-09-01 17:38:31 +01:00
|
|
|
eject = (import ../os-specific/linux/eject) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
|
|
|
|
2005-12-12 17:07:34 +00:00
|
|
|
initscripts = (import ../os-specific/linux/initscripts) {
|
|
|
|
inherit fetchurl stdenv popt pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2005-08-24 18:13:24 +01:00
|
|
|
hwdata = (import ../os-specific/linux/hwdata) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2005-12-31 14:35:49 +00:00
|
|
|
kernelHeadersArm = (import ../os-specific/linux/kernel-headers-cross) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
cross = "arm-linux";
|
|
|
|
};
|
|
|
|
|
|
|
|
kernelHeadersMips = (import ../os-specific/linux/kernel-headers-cross) {
|
2005-11-29 01:43:11 +00:00
|
|
|
inherit fetchurl stdenv;
|
2005-12-31 14:35:49 +00:00
|
|
|
cross = "mips-linux";
|
2005-11-29 01:43:11 +00:00
|
|
|
};
|
|
|
|
|
2005-12-31 16:30:47 +00:00
|
|
|
kernelHeadersSparc = (import ../os-specific/linux/kernel-headers-cross) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
cross = "sparc-linux";
|
|
|
|
};
|
|
|
|
|
2005-06-16 17:20:19 +01:00
|
|
|
kernel = (import ../os-specific/linux/kernel) {
|
2006-07-17 18:16:31 +01:00
|
|
|
inherit fetchurl perl mktemp;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2005-06-16 17:20:19 +01:00
|
|
|
};
|
|
|
|
|
2006-07-22 12:22:41 +01:00
|
|
|
kernelscripts = (import ../os-specific/linux/kernelscripts) {
|
|
|
|
inherit coreutils findutils module_init_tools;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
|
|
|
nix = nixUnstable;
|
|
|
|
};
|
|
|
|
|
2005-08-29 18:56:10 +01:00
|
|
|
#klibc = (import ../os-specific/linux/klibc) {
|
|
|
|
# inherit fetchurl stdenv kernel perl bison flexWrapper;
|
|
|
|
#};
|
2005-08-27 21:48:05 +01:00
|
|
|
|
2005-06-23 15:02:19 +01:00
|
|
|
mingetty = (import ../os-specific/linux/mingetty) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-08-27 18:58:49 +01:00
|
|
|
mingettyWrapper = (import ../os-specific/linux/mingetty-wrapper) {
|
|
|
|
inherit stdenv mingetty shadowutils;
|
|
|
|
};
|
|
|
|
|
2006-01-03 15:49:54 +00:00
|
|
|
ov511 = (import ../os-specific/linux/ov511) {
|
2006-07-17 18:51:50 +01:00
|
|
|
inherit fetchurl kernel;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2006-01-03 15:49:54 +00:00
|
|
|
};
|
|
|
|
|
2005-10-24 17:07:50 +01:00
|
|
|
pam = (import ../os-specific/linux/pam) {
|
2005-10-25 18:39:55 +01:00
|
|
|
inherit stdenv fetchurl cracklib;
|
2005-10-24 17:07:50 +01:00
|
|
|
};
|
|
|
|
|
2005-08-27 21:48:05 +01:00
|
|
|
#nfsUtils = (import ../os-specific/linux/nfs-utils) {
|
|
|
|
# inherit fetchurl stdenv;
|
|
|
|
#};
|
2005-08-24 18:13:24 +01:00
|
|
|
|
2003-11-11 15:57:15 +00:00
|
|
|
alsaLib = (import ../os-specific/linux/alsa/library) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-11 15:57:15 +00:00
|
|
|
};
|
|
|
|
|
2005-08-29 16:56:55 +01:00
|
|
|
alsaUtils = (import ../os-specific/linux/alsa/utils) {
|
|
|
|
inherit fetchurl stdenv alsaLib ncurses gettext;
|
|
|
|
};
|
|
|
|
|
2004-02-16 10:40:45 +00:00
|
|
|
utillinux = (import ../os-specific/linux/util-linux) {
|
2004-09-18 18:23:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 10:40:45 +00:00
|
|
|
};
|
|
|
|
|
2005-12-28 12:11:19 +00:00
|
|
|
utillinuxStatic = (import ../os-specific/linux/util-linux-static) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-10-05 15:16:58 +01:00
|
|
|
sysklogd = (import ../os-specific/linux/sysklogd) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-02-16 14:09:55 +00:00
|
|
|
sysvinit = (import ../os-specific/linux/sysvinit) {
|
2004-09-18 18:23:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 14:09:55 +00:00
|
|
|
};
|
|
|
|
|
2004-02-16 14:31:52 +00:00
|
|
|
e2fsprogs = (import ../os-specific/linux/e2fsprogs) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
|
|
|
|
2005-08-28 01:19:42 +01:00
|
|
|
e2fsprogsDiet = (import ../os-specific/linux/e2fsprogs-diet) {
|
|
|
|
inherit fetchurl stdenv gettext dietgcc;
|
|
|
|
};
|
|
|
|
|
2004-02-19 12:46:35 +00:00
|
|
|
nettools = (import ../os-specific/linux/net-tools) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-12-16 16:34:03 +00:00
|
|
|
modutils = (import ../os-specific/linux/modutils) {
|
|
|
|
inherit fetchurl stdenv bison flex;
|
|
|
|
};
|
|
|
|
|
2005-08-20 22:49:31 +01:00
|
|
|
module_init_tools = (import ../os-specific/linux/module-init-tools) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-12-28 12:11:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module_init_toolsStatic = (import ../os-specific/linux/module-init-tools-static) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-20 22:49:31 +01:00
|
|
|
};
|
|
|
|
|
2004-08-30 12:44:51 +01:00
|
|
|
shadowutils = (import ../os-specific/linux/shadow) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-08-05 20:31:30 +01:00
|
|
|
iputils = (import ../os-specific/linux/iputils) {
|
2005-07-22 14:08:02 +01:00
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
2004-08-05 20:31:30 +01:00
|
|
|
glibc = stdenv.gcc.glibc;
|
|
|
|
};
|
2005-01-21 18:24:25 +00:00
|
|
|
|
|
|
|
procps = import ../os-specific/linux/procps {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2005-10-03 13:37:32 +01:00
|
|
|
syslinux = import ../os-specific/linux/syslinux {
|
2005-07-25 17:58:01 +01:00
|
|
|
inherit fetchurl stdenv nasm perl;
|
|
|
|
};
|
|
|
|
|
2005-10-03 13:37:32 +01:00
|
|
|
hotplug = import ../os-specific/linux/hotplug {
|
2006-01-07 15:06:10 +00:00
|
|
|
inherit fetchurl stdenv bash gnused coreutils utillinux gnugrep module_init_tools;
|
2005-08-19 15:11:05 +01:00
|
|
|
};
|
|
|
|
|
2006-01-07 17:25:39 +00:00
|
|
|
usbutils = import ../os-specific/linux/usbutils {
|
|
|
|
inherit fetchurl stdenv libusb;
|
|
|
|
};
|
|
|
|
|
2005-10-03 13:37:32 +01:00
|
|
|
udev = import ../os-specific/linux/udev {
|
2005-08-19 15:11:05 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-08-17 18:37:55 +01:00
|
|
|
};
|
|
|
|
|
2005-11-01 11:34:47 +00:00
|
|
|
fuse = import ../os-specific/linux/fuse {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-01-28 01:13:31 +00:00
|
|
|
xorg_sys_opengl = import ../os-specific/linux/opengl/xorg-sys {
|
|
|
|
inherit stdenv xlibs expat;
|
|
|
|
};
|
|
|
|
|
2005-11-01 11:34:47 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
### DATA
|
|
|
|
|
2004-04-08 15:06:15 +01: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 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv unzip;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
2006-07-01 03:02:35 +01:00
|
|
|
docbook5x = (import ../data/sgml+xml/schemas/xml-dtd/docbook-5.0) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-13 00:01:26 +01:00
|
|
|
};
|
|
|
|
|
2004-04-08 12:49:27 +01:00
|
|
|
docbook_xml_ebnf_dtd = (import ../data/sgml+xml/schemas/xml-dtd/docbook-ebnf) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
docbook_xml_xslt = (import ../data/sgml+xml/stylesheets/xslt/docbook) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 18:02:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
### APPLICATIONS
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2006-07-08 13:44:39 +01:00
|
|
|
abiword = (import ../applications/office/abiword) {
|
|
|
|
inherit fetchurl stdenv pkgconfig fribidi libpng popt;
|
|
|
|
inherit (gtkLibs) glib gtk pango;
|
|
|
|
inherit (gnome) libglade libgnomeprint libgnomeprintui libgnomecanvas;
|
|
|
|
};
|
|
|
|
|
2005-10-26 22:10:31 +01:00
|
|
|
openoffice = (import ../applications/office/openoffice) {
|
2005-11-04 13:07:22 +00:00
|
|
|
inherit fetchurl stdenv pam python tcsh libxslt
|
|
|
|
perl perlArchiveZip perlCompressZlib zlib libjpeg
|
|
|
|
expat pkgconfig freetype fontconfig libwpd libxml2
|
|
|
|
db4 sablotron curl libsndfile flex zip unzip libmspack
|
|
|
|
getopt file;
|
|
|
|
inherit (xlibs) libXaw;
|
2005-10-26 22:10:31 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
2005-10-26 22:52:41 +01:00
|
|
|
|
|
|
|
bison = (import ../development/tools/parsing/bison/bison-2.1.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2005-10-27 12:59:10 +01:00
|
|
|
neon = (import ../development/libraries/neon/neon-0.24.7.nix) {
|
|
|
|
inherit fetchurl stdenv libxml2;
|
|
|
|
};
|
2005-10-26 22:10:31 +01:00
|
|
|
};
|
2005-10-24 16:15:34 +01:00
|
|
|
|
2005-12-20 00:48:38 +00:00
|
|
|
rpm = (import ../applications/package-management/rpm) {
|
|
|
|
inherit fetchurl stdenv python tcl readline file cpio beecrypt unzip neon gnupg libxml2 perl;
|
|
|
|
};
|
|
|
|
|
2005-10-13 13:32:16 +01:00
|
|
|
cvs = (import ../applications/version-management/cvs) {
|
|
|
|
inherit fetchurl stdenv vim;
|
|
|
|
};
|
|
|
|
|
2006-01-02 16:01:03 +00:00
|
|
|
subversion = (import ../applications/version-management/subversion-1.3.x) {
|
2005-04-29 15:32:31 +01:00
|
|
|
inherit fetchurl stdenv openssl db4 expat swig zlib;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
};
|
|
|
|
|
2006-07-12 14:41:02 +01:00
|
|
|
subversion14 = (import ../applications/version-management/subversion-1.4.x) {
|
|
|
|
inherit fetchurl stdenv openssl db4 expat swig zlib;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
};
|
|
|
|
|
2005-05-24 09:42:03 +01:00
|
|
|
subversionWithJava = (import ../applications/version-management/subversion-1.2.x) {
|
2006-01-25 14:03:55 +00:00
|
|
|
inherit fetchurl stdenv openssl db4 expat jdk;
|
2004-08-23 20:23:03 +01:00
|
|
|
swig = swigWithJava;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
2004-10-18 09:56:09 +01:00
|
|
|
javahlBindings = true;
|
2004-08-23 20:23:03 +01:00
|
|
|
};
|
|
|
|
|
2004-11-28 17:28:55 +00:00
|
|
|
rcs = (import ../applications/version-management/rcs) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-10-04 15:25:13 +01:00
|
|
|
darcs = import ../applications/version-management/darcs {
|
2006-01-30 11:18:38 +00:00
|
|
|
inherit fetchurl stdenv ghc zlib ncurses curl;
|
2005-10-04 15:25:13 +01:00
|
|
|
};
|
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
pan = (import ../applications/networking/newsreaders/pan) {
|
2006-05-07 22:58:31 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig gnet perl
|
|
|
|
pcre gmime gettext;
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-06 15:24:19 +00:00
|
|
|
spellChecking = false;
|
|
|
|
};
|
|
|
|
|
2003-11-06 16:28:57 +00:00
|
|
|
sylpheed = (import ../applications/networking/mailreaders/sylpheed) {
|
2005-12-19 10:34:01 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig openssl gpgme;
|
2005-05-26 21:09:29 +01:00
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
sslSupport = true;
|
2005-12-19 10:34:01 +00:00
|
|
|
gpgSupport = true;
|
2005-05-26 21:09:29 +01:00
|
|
|
};
|
|
|
|
|
2005-08-30 08:39:38 +01:00
|
|
|
valknut = (import ../applications/networking/p2p/valknut) {
|
|
|
|
inherit fetchurl stdenv perl x11 libxml2 libjpeg libpng openssl dclib;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
|
|
|
|
2005-10-22 12:51:30 +01:00
|
|
|
mozilla = (import ../applications/networking/browsers/mozilla) {
|
|
|
|
inherit fetchurl pkgconfig stdenv perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
};
|
|
|
|
|
2005-11-30 05:49:28 +00:00
|
|
|
firefox = (import ../applications/networking/browsers/firefox) {
|
2006-02-16 08:46:28 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo;
|
2005-09-18 00:58:51 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
2006-02-15 17:04:11 +00:00
|
|
|
#enableOfficialBranding = true;
|
2005-09-18 00:58:51 +01:00
|
|
|
};
|
|
|
|
|
2006-02-15 02:53:01 +00:00
|
|
|
xulrunner = (import ../development/interpreters/xulrunner) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
};
|
|
|
|
|
|
|
|
xulrunnerWrapper = {application, launcher}:
|
|
|
|
(import ../development/interpreters/xulrunner/wrapper) {
|
|
|
|
inherit stdenv xulrunner application launcher;
|
|
|
|
};
|
|
|
|
|
2005-10-12 18:25:41 +01:00
|
|
|
wrapFirefox = firefox: (import ../applications/networking/browsers/firefox-wrapper) {
|
2004-10-17 14:28:28 +01:00
|
|
|
inherit stdenv firefox;
|
2005-03-12 13:35:27 +00:00
|
|
|
plugins = [
|
|
|
|
MPlayerPlugin
|
|
|
|
flashplayer
|
|
|
|
# RealPlayer # disabled by default for legal reasons
|
2006-03-08 16:03:47 +00:00
|
|
|
] ++ (if blackdown != null then [blackdown] else []);
|
2004-10-17 14:56:56 +01:00
|
|
|
};
|
|
|
|
|
2005-10-12 18:25:41 +01:00
|
|
|
firefoxWrapper = wrapFirefox firefox;
|
|
|
|
|
2004-10-17 14:56:56 +01:00
|
|
|
flashplayer = (import ../applications/networking/browsers/mozilla-plugins/flashplayer) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
inherit (xlibs) libXmu;
|
2004-10-17 14:28:28 +01:00
|
|
|
};
|
|
|
|
|
2006-03-02 19:08:26 +00:00
|
|
|
thunderbird = import ../applications/networking/mailreaders/thunderbird {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
#enableOfficialBranding = true;
|
|
|
|
};
|
2004-09-15 12:06:15 +01:00
|
|
|
|
2004-07-26 11:33:58 +01:00
|
|
|
lynx = (import ../applications/networking/browsers/lynx) {
|
|
|
|
inherit fetchurl stdenv ncurses openssl;
|
|
|
|
};
|
|
|
|
|
2005-12-26 16:13:04 +00:00
|
|
|
links = (import ../applications/networking/browsers/links) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-09-14 17:23:02 +01:00
|
|
|
w3m = (import ../applications/networking/browsers/w3m) {
|
2006-04-28 20:02:52 +01:00
|
|
|
inherit fetchurl stdenv ncurses openssl boehmgc gettext zlib;
|
|
|
|
graphicsSupport = false;
|
|
|
|
inherit (gtkLibs1x) gdkpixbuf;
|
2005-09-14 17:23:02 +01:00
|
|
|
};
|
|
|
|
|
2006-02-10 12:15:04 +00:00
|
|
|
opera = import ../applications/networking/browsers/opera {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
inherit (xlibs) libX11 libXt libXext;
|
|
|
|
qt = qt3;
|
|
|
|
motif = lesstif;
|
|
|
|
};
|
|
|
|
|
2005-11-03 20:00:43 +00:00
|
|
|
ethereal = (import ../applications/networking/sniffers/ethereal) {
|
|
|
|
inherit fetchurl stdenv perl pkgconfig libpcap;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2005-08-24 10:54:42 +01:00
|
|
|
gaim = (import ../applications/networking/instant-messengers/gaim) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl libxml2 openssl nss;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
2005-02-26 23:45:19 +00:00
|
|
|
};
|
|
|
|
|
2006-07-22 12:43:46 +01:00
|
|
|
amsn = (import ../applications/networking/instant-messengers/amsn) {
|
|
|
|
inherit fetchurl stdenv which tcl tk x11;
|
|
|
|
};
|
|
|
|
|
2005-11-22 12:05:36 +00:00
|
|
|
xchat = (import ../applications/networking/irc/xchat) {
|
|
|
|
inherit fetchurl stdenv pkgconfig tcl;
|
2005-11-22 12:22:50 +00:00
|
|
|
inherit (gtkLibs) glib gtk;
|
2005-11-22 12:05:36 +00:00
|
|
|
};
|
|
|
|
|
2006-02-15 02:53:01 +00:00
|
|
|
chatzilla =
|
|
|
|
xulrunnerWrapper {
|
|
|
|
launcher = "chatzilla";
|
|
|
|
application = (import ../applications/networking/irc/chatzilla) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2005-11-22 22:39:09 +00:00
|
|
|
rsync = (import ../applications/networking/sync/rsync) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-01-19 21:04:43 +00:00
|
|
|
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-01-19 21:48:45 +00:00
|
|
|
|
|
|
|
flac = (import ../applications/audio/flac) {
|
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
|
|
|
|
2005-01-19 22:12:34 +00:00
|
|
|
lame = (import ../applications/audio/lame) {
|
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
};
|
2005-01-19 21:04:43 +00:00
|
|
|
|
2005-10-21 11:39:01 +01:00
|
|
|
xmms = (import ../applications/audio/xmms) {
|
2006-06-23 21:11:36 +01:00
|
|
|
inherit fetchurl libogg libvorbis alsaLib;
|
2005-10-21 11:39:01 +01:00
|
|
|
inherit (gnome) esound;
|
|
|
|
inherit (gtkLibs1x) glib gtk;
|
2006-06-23 21:11:36 +01:00
|
|
|
stdenv = overrideGCC stdenv gcc34; # due to problems with gcc 4.x
|
2005-10-21 11:39:01 +01:00
|
|
|
};
|
|
|
|
|
2006-02-02 14:12:31 +00:00
|
|
|
bmp = import ../applications/audio/bmp {
|
|
|
|
inherit fetchurl stdenv pkgconfig libogg libvorbis alsaLib id3lib;
|
|
|
|
inherit (gnome) esound libglade;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
2006-02-02 15:04:04 +00:00
|
|
|
bmp_plugin_musepack = import ../applications/audio/bmp-plugins/musepack {
|
|
|
|
inherit fetchurl stdenv pkgconfig bmp libmpcdec taglib;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
2003-11-11 15:01:07 +00:00
|
|
|
MPlayer = (import ../applications/video/MPlayer) {
|
2005-08-24 16:02:30 +01:00
|
|
|
inherit fetchurl stdenv freetype x11 zlib libtheora libcaca;
|
2006-04-18 19:46:36 +01:00
|
|
|
inherit (xlibs) libXv libXinerama libXrandr;
|
2003-11-11 15:57:15 +00:00
|
|
|
alsaSupport = true;
|
|
|
|
alsa = alsaLib;
|
2005-02-16 16:18:43 +00:00
|
|
|
theoraSupport = true;
|
2005-08-24 16:02:30 +01:00
|
|
|
cacaSupport = true;
|
2005-10-29 20:07:27 +01:00
|
|
|
xineramaSupport = true;
|
2006-04-18 19:46:36 +01:00
|
|
|
randrSupport = true;
|
2003-11-11 15:01:07 +00:00
|
|
|
};
|
|
|
|
|
2004-10-17 14:56:56 +01:00
|
|
|
MPlayerPlugin = (import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in) {
|
2004-10-17 14:13:24 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig firefox;
|
|
|
|
inherit (xlibs) libXpm;
|
2005-05-18 22:15:29 +01:00
|
|
|
# !!! should depend on MPlayer
|
2003-11-13 13:11:38 +00:00
|
|
|
};
|
|
|
|
|
2003-12-03 21:58:16 +00:00
|
|
|
vlc = (import ../applications/video/vlc) {
|
2006-06-29 13:41:25 +01:00
|
|
|
inherit fetchurl stdenv perl x11 wxGTK
|
2006-06-30 00:48:19 +01:00
|
|
|
zlib mpeg2dec a52dec libmad ffmpeg
|
|
|
|
libdvdread libdvdnav libdvdcss;
|
2004-05-01 19:17:56 +01:00
|
|
|
inherit (xlibs) libXv;
|
2003-12-03 21:58:16 +00:00
|
|
|
alsa = alsaLib;
|
|
|
|
};
|
|
|
|
|
2004-12-10 23:16:23 +00:00
|
|
|
xineUI = (import ../applications/video/xine-ui) {
|
|
|
|
inherit fetchurl stdenv x11 xineLib libpng;
|
|
|
|
};
|
|
|
|
|
2006-01-20 11:30:24 +00:00
|
|
|
xawtv = (import ../applications/video/xawtv) {
|
|
|
|
inherit fetchurl stdenv ncurses libjpeg perl;
|
|
|
|
inherit (xlibs) libX11 libXt libXft xproto libFS fontsproto libXaw libXpm libXext libSM libICE xextproto;
|
|
|
|
};
|
|
|
|
|
2005-03-12 12:53:03 +00:00
|
|
|
RealPlayer = import ../applications/video/RealPlayer {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
|
|
|
};
|
|
|
|
|
2004-01-21 09:34:19 +00:00
|
|
|
zapping = (import ../applications/video/zapping) {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig perl python
|
2005-03-08 18:52:35 +00:00
|
|
|
gettext zvbi libjpeg libpng x11
|
2004-06-21 21:41:32 +01:00
|
|
|
rte perlXMLParser;
|
2005-03-08 18:52:35 +00:00
|
|
|
inherit (gnome) scrollkeeper libgnomeui libglade esound;
|
2004-06-21 19:13:45 +01:00
|
|
|
inherit (xlibs) libXv libXmu libXext;
|
2004-01-25 08:51:03 +00:00
|
|
|
teletextSupport = true;
|
|
|
|
jpegSupport = true;
|
|
|
|
pngSupport = true;
|
2004-06-21 21:41:32 +01:00
|
|
|
recordingSupport = true;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2005-01-19 22:51:27 +00:00
|
|
|
mythtv = (import ../applications/video/mythtv) {
|
2005-01-20 21:11:49 +00:00
|
|
|
inherit fetchurl stdenv which qt3 x11 lame;
|
|
|
|
inherit (xlibs) libXinerama libXv libXxf86vm;
|
2005-01-19 22:51:27 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 16:13:13 +00:00
|
|
|
gqview = (import ../applications/graphics/gqview) {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libpng;
|
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-11 16:13:13 +00:00
|
|
|
};
|
|
|
|
|
2005-09-07 15:57:30 +01:00
|
|
|
batik = (import ../applications/graphics/batik) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
inkscape = (import ../applications/graphics/inkscape) {
|
2005-11-04 13:07:22 +00:00
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig zlib
|
|
|
|
popt libxml2 libxslt libpng boehmgc fontconfig gtkmm
|
|
|
|
glibmm libsigcxx;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (xlibs) libXft;
|
2005-09-07 15:57:30 +01:00
|
|
|
};
|
|
|
|
|
2005-03-11 10:46:20 +00:00
|
|
|
fspot = (import ../applications/graphics/f-spot) {
|
2005-03-11 10:55:21 +00:00
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
|
2005-03-11 12:00:28 +00:00
|
|
|
libexif libjpeg sqlite lcms libgphoto2 monoDLLFixer;
|
2005-03-11 10:46:20 +00:00
|
|
|
inherit (gnome) libgnome libgnomeui;
|
2005-03-11 10:55:21 +00:00
|
|
|
gtksharp = gtksharp1;
|
2005-03-11 10:46:20 +00:00
|
|
|
};
|
|
|
|
|
2005-09-11 23:39:06 +01:00
|
|
|
gimp = (import ../applications/graphics/gimp) {
|
2005-11-04 13:07:22 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig freetype fontconfig
|
2006-07-12 00:35:34 +01:00
|
|
|
libtiff libjpeg libpng libexif zlib perl perlXMLParser python pygtk gettext;
|
2006-01-26 18:53:43 +00:00
|
|
|
inherit (gnome) gtk libgtkhtml glib pango atk libart_lgpl;
|
2005-09-11 23:39:06 +01:00
|
|
|
};
|
|
|
|
|
2006-07-05 00:51:41 +01:00
|
|
|
xara = (import ../applications/graphics/xara) {
|
|
|
|
inherit fetchurl stdenv autoconf automake libtool gettext cvs wxGTK
|
|
|
|
pkgconfig libxml2 zip libpng libjpeg;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
2005-08-30 20:41:10 +01:00
|
|
|
cdrtools = (import ../applications/misc/cdrtools) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-11-04 20:19:42 +00:00
|
|
|
hello = (import ../applications/misc/hello/ex-1) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-27 12:09:22 +00:00
|
|
|
};
|
|
|
|
|
2005-11-13 15:03:49 +00:00
|
|
|
pinfo = (import ../applications/misc/pinfo) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2006-01-31 14:22:08 +00:00
|
|
|
gphoto2 = (import ../applications/misc/gphoto2) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libgphoto2 libexif popt;
|
|
|
|
};
|
|
|
|
|
2004-04-06 18:47:34 +01:00
|
|
|
xchm = (import ../applications/misc/xchm) {
|
|
|
|
inherit fetchurl stdenv wxGTK chmlib;
|
|
|
|
};
|
|
|
|
|
2005-11-27 21:06:08 +00:00
|
|
|
xpdf = (import ../applications/misc/xpdf) {
|
2005-12-02 23:21:40 +00:00
|
|
|
inherit fetchurl stdenv x11 freetype t1lib;
|
2005-12-02 22:49:51 +00:00
|
|
|
motif = lesstif;
|
2005-11-27 21:06:08 +00:00
|
|
|
};
|
|
|
|
|
2006-01-26 20:45:11 +00:00
|
|
|
xterm = (import ../applications/misc/xterm) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
inherit (xlibs) libXaw xproto libXt libX11 libSM libICE;
|
|
|
|
};
|
|
|
|
|
2004-09-25 21:27:40 +01:00
|
|
|
acroread = (import ../applications/misc/acrobat-reader) {
|
2005-03-25 15:13:46 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2005-11-01 11:34:47 +00:00
|
|
|
inherit (xlibs) libXt libXp libXext libX11 libXinerama;
|
2005-03-25 15:13:46 +00:00
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
2005-11-01 11:34:47 +00:00
|
|
|
xineramaSupport = true;
|
2005-12-22 10:49:43 +00:00
|
|
|
fastStart = true;
|
2004-09-25 21:27:40 +01:00
|
|
|
};
|
|
|
|
|
2006-02-24 21:42:57 +00:00
|
|
|
eclipseSpoofax =
|
|
|
|
eclipse [spoofax];
|
|
|
|
|
|
|
|
eclipse = plugins :
|
|
|
|
(import ../applications/editors/eclipse) {
|
|
|
|
inherit fetchurl stdenv makeWrapper jdk;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (xlibs) libXtst;
|
|
|
|
inherit plugins;
|
|
|
|
};
|
2005-11-07 23:02:17 +00:00
|
|
|
|
2006-02-25 01:13:01 +00:00
|
|
|
spoofax = (import ../applications/editors/eclipse/plugins/spoofax) {
|
2005-11-07 23:02:17 +00:00
|
|
|
inherit fetchurl stdenv;
|
2004-10-13 15:21:20 +01:00
|
|
|
};
|
|
|
|
|
2005-02-26 23:45:19 +00:00
|
|
|
monodevelop = (import ../applications/editors/monodevelop) {
|
2005-03-09 17:49:19 +00:00
|
|
|
inherit fetchurl stdenv file mono gtksourceviewsharp
|
|
|
|
gtkmozembedsharp monodoc perl perlXMLParser pkgconfig;
|
2005-06-17 21:21:29 +01:00
|
|
|
inherit (gnome) gnomevfs libbonobo libglade libgnome GConf glib gtk;
|
2005-03-09 19:08:21 +00:00
|
|
|
mozilla = firefox;
|
2005-03-09 17:49:19 +00:00
|
|
|
gtksharp = gtksharp2;
|
2005-02-26 23:45:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
monodoc = (import ../applications/editors/monodoc) {
|
2005-03-09 17:49:19 +00:00
|
|
|
inherit fetchurl stdenv mono pkgconfig;
|
|
|
|
gtksharp = gtksharp1;
|
2005-02-26 23:45:19 +00:00
|
|
|
};
|
|
|
|
|
2004-10-06 12:32:20 +01:00
|
|
|
emacs = (import ../applications/editors/emacs) {
|
2005-11-12 17:05:51 +00:00
|
|
|
inherit fetchurl stdenv x11 Xaw3d;
|
|
|
|
inherit (xlibs) libXaw libXpm;
|
2006-01-09 19:37:11 +00:00
|
|
|
xaw3dSupport = true;
|
2004-10-06 12:32:20 +01:00
|
|
|
};
|
|
|
|
|
2005-12-13 00:13:01 +00:00
|
|
|
emacs22 = (import ../applications/editors/emacs-22) {
|
|
|
|
inherit fetchurl stdenv pkgconfig x11 Xaw3d;
|
|
|
|
inherit (xlibs) libXaw libXpm;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
xaw3dSupport = false;
|
|
|
|
gtkGUI = true;
|
|
|
|
};
|
|
|
|
|
2005-12-22 10:49:43 +00:00
|
|
|
emacs22aa = (import ../applications/editors/emacs-22-aa) {
|
|
|
|
inherit fetchurl stdenv pkgconfig x11 Xaw3d libpng;
|
|
|
|
inherit (xlibs) libXaw libXpm libXft;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
xaw3dSupport = false;
|
|
|
|
gtkGUI = true;
|
|
|
|
xftSupport = true;
|
|
|
|
};
|
|
|
|
|
2003-12-08 11:56:50 +00:00
|
|
|
nxml = (import ../applications/editors/emacs/modes/nxml) {
|
2004-02-02 21:40:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-08 11:56:50 +00:00
|
|
|
};
|
|
|
|
|
2004-10-06 13:06:23 +01:00
|
|
|
cua = (import ../applications/editors/emacs/modes/cua) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-12-06 07:36:56 +00:00
|
|
|
haskellMode = (import ../applications/editors/emacs/modes/haskell) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-10-06 14:17:06 +01:00
|
|
|
nano = (import ../applications/editors/nano) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2004-07-30 13:57:27 +01:00
|
|
|
vim = (import ../applications/editors/vim) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2004-02-13 14:42:28 +00:00
|
|
|
|
2005-10-05 17:15:36 +01:00
|
|
|
# vimDiet = (import ../applications/editors/vim-diet) {
|
|
|
|
# inherit fetchurl stdenv ncurses dietgcc;
|
|
|
|
# };
|
2004-07-30 14:38:10 +01:00
|
|
|
|
2005-12-03 00:04:13 +00:00
|
|
|
nedit = import ../applications/editors/nedit {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXpm;
|
|
|
|
motif = lesstif;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-04-01 17:02:53 +01:00
|
|
|
### GAMES
|
|
|
|
|
|
|
|
zoom = (import ../games/zoom) {
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit fetchurl stdenv perl expat freetype;
|
|
|
|
inherit (xlibs) xlibs;
|
2004-04-01 17:02:53 +01:00
|
|
|
};
|
|
|
|
|
2006-01-27 23:51:36 +00:00
|
|
|
quake3game = import ../games/quake3/game {
|
2006-01-26 14:43:05 +00:00
|
|
|
inherit fetchurl stdenv x11 SDL mesa openal;
|
|
|
|
};
|
|
|
|
|
2006-01-27 23:51:36 +00:00
|
|
|
quake3demodata = import ../games/quake3/demo {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
quake3demo = import ../games/quake3/wrapper {
|
2006-01-28 00:41:16 +00:00
|
|
|
name = "quake3-demo";
|
|
|
|
inherit fetchurl stdenv mesa;
|
2006-01-27 23:51:36 +00:00
|
|
|
game = quake3game;
|
|
|
|
paks = [quake3demodata];
|
2004-06-09 19:06:29 +01:00
|
|
|
};
|
|
|
|
|
2006-01-30 11:44:39 +00:00
|
|
|
ut2004demo = import ../games/ut2004demo {
|
2004-06-09 19:06:29 +01:00
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
|
|
|
};
|
2004-06-09 18:59:46 +01:00
|
|
|
|
2004-04-01 17:02:53 +01:00
|
|
|
|
2004-02-13 14:42:28 +00:00
|
|
|
### MISC
|
|
|
|
|
|
|
|
uml = (import ../misc/uml) {
|
2004-09-18 18:23:18 +01:00
|
|
|
inherit fetchurl stdenv perl;
|
2004-02-13 14:42:28 +00:00
|
|
|
m4 = gnum4;
|
2004-09-27 20:50:58 +01:00
|
|
|
gcc = gcc33;
|
2004-02-13 14:42:28 +00:00
|
|
|
};
|
|
|
|
|
2004-02-18 16:22:31 +00:00
|
|
|
umlutilities = (import ../misc/uml-utilities) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-11-03 21:28:03 +00:00
|
|
|
/*
|
|
|
|
atari800 = (import ../misc/emulators/atari800) {
|
|
|
|
inherit fetchurl stdenv zlib SDL;
|
|
|
|
};
|
|
|
|
|
|
|
|
ataripp = (import ../misc/emulators/atari++) {
|
|
|
|
inherit fetchurl stdenv x11 SDL;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2005-12-03 01:33:18 +00:00
|
|
|
generator = (import ../misc/emulators/generator) {
|
|
|
|
inherit fetchurl stdenv SDL nasm;
|
|
|
|
inherit (gtkLibs1x) gtk;
|
|
|
|
};
|
|
|
|
|
2005-12-03 02:32:02 +00:00
|
|
|
dosbox = (import ../misc/emulators/dosbox) {
|
|
|
|
inherit fetchurl stdenv SDL;
|
|
|
|
};
|
|
|
|
|
2006-03-28 11:38:21 +01:00
|
|
|
texFunctions = (import ../misc/tex/nix) {
|
|
|
|
inherit stdenv perl tetex graphviz ghostscript;
|
|
|
|
};
|
|
|
|
|
2005-04-28 22:10:33 +01:00
|
|
|
tetex = (import ../misc/tex/tetex) {
|
|
|
|
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
|
|
|
|
};
|
|
|
|
|
2006-01-27 20:51:41 +00:00
|
|
|
lazylist = (import ../misc/tex/lazylist) {
|
|
|
|
inherit fetchurl stdenv tetex;
|
|
|
|
};
|
|
|
|
|
|
|
|
polytable = (import ../misc/tex/polytable) {
|
|
|
|
inherit fetchurl stdenv tetex lazylist;
|
|
|
|
};
|
|
|
|
|
2005-04-29 14:23:15 +01:00
|
|
|
ghostscript = (import ../misc/ghostscript) {
|
2005-08-30 14:50:14 +01:00
|
|
|
inherit fetchurl stdenv libjpeg libpng zlib x11;
|
|
|
|
x11Support = false;
|
2005-04-29 14:23:15 +01:00
|
|
|
};
|
|
|
|
|
2005-12-27 15:14:58 +00:00
|
|
|
#nixStatic = (import ../misc/nix-static) {
|
2006-02-09 17:04:18 +00:00
|
|
|
# inherit fetchurl stdenv aterm perl curl;
|
2005-12-27 15:14:58 +00:00
|
|
|
# bdb = db4;
|
|
|
|
#};
|
2005-12-26 15:56:00 +00:00
|
|
|
|
2004-02-16 15:40:55 +00:00
|
|
|
nix = (import ../misc/nix) {
|
2006-07-02 20:04:26 +01:00
|
|
|
inherit fetchurl aterm perl curl;
|
2004-02-16 16:54:01 +00:00
|
|
|
bdb = db4;
|
2006-07-02 20:04:26 +01:00
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2004-02-16 15:40:55 +00:00
|
|
|
};
|
|
|
|
|
2006-05-01 20:16:41 +01:00
|
|
|
nixUnstable = (import ../misc/nix-unstable) {
|
|
|
|
inherit fetchurl stdenv aterm perl curl;
|
|
|
|
bdb = db4;
|
|
|
|
};
|
|
|
|
|
2005-10-21 14:06:43 +01:00
|
|
|
cups = (import ../misc/cups) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-03-02 18:17:45 +00:00
|
|
|
busybox = (import ../misc/busybox) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
gccCross = gcc40mips;
|
|
|
|
binutilsCross = binutilsMips;
|
|
|
|
};
|
|
|
|
|
2005-11-03 20:00:43 +00:00
|
|
|
saneBackends = (import ../misc/sane-backends) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-01-31 15:18:27 +00:00
|
|
|
linuxwacom = (import ../misc/linuxwacom) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXi;
|
|
|
|
};
|
|
|
|
|
2006-01-28 02:10:26 +00:00
|
|
|
rssglx = (import ../misc/screensavers/rss-glx) {
|
|
|
|
inherit fetchurl stdenv x11 mesa;
|
|
|
|
};
|
|
|
|
|
2006-02-02 16:31:23 +00:00
|
|
|
toolbuslib = (import ../development/libraries/toolbuslib) {
|
|
|
|
inherit stdenv fetchurl aterm;
|
|
|
|
};
|
|
|
|
|
2006-04-18 19:46:36 +01:00
|
|
|
/*
|
2006-02-02 16:31:23 +00:00
|
|
|
toolbus = (import ../development/interpreters/toolbus) {
|
|
|
|
inherit stdenv fetchurl atermjava toolbuslib aterm yacc flex;
|
|
|
|
};
|
2006-04-18 19:46:36 +01:00
|
|
|
*/
|
2006-02-02 16:31:23 +00:00
|
|
|
|
|
|
|
joe = (import ../applications/editors/joe) {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2006-03-03 19:25:06 +00:00
|
|
|
|
2006-03-03 19:28:23 +00:00
|
|
|
aangifte2005 = import ../evil/belastingdienst {
|
2006-03-03 19:25:06 +00:00
|
|
|
inherit stdenv fetchurl;
|
2006-03-03 22:31:16 +00:00
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
patchelf = patchelfNew;
|
2006-03-03 19:25:06 +00:00
|
|
|
};
|
2006-03-31 13:10:20 +01:00
|
|
|
|
2006-04-03 14:02:05 +01:00
|
|
|
maven = (import ../misc/maven/maven-1.0.nix) {
|
|
|
|
inherit stdenv fetchurl jdk;
|
|
|
|
};
|
|
|
|
|
2006-04-19 23:32:59 +01:00
|
|
|
martyr = (import ../development/libraries/martyr) {
|
2006-04-22 19:08:37 +01:00
|
|
|
inherit stdenv fetchurl apacheAnt;
|
|
|
|
};
|
|
|
|
|
|
|
|
trac = (import ../misc/trac) {
|
|
|
|
inherit stdenv fetchurl python clearsilver makeWrapper;
|
|
|
|
|
|
|
|
sqlite = sqlite3;
|
|
|
|
|
|
|
|
subversion = (import ../applications/version-management/subversion-1.3.x) {
|
|
|
|
inherit fetchurl stdenv openssl db4 expat jdk swig zlib;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
pythonBindings = true; # Enable python bindings
|
|
|
|
};
|
|
|
|
|
|
|
|
pysqlite = (import ../development/libraries/pysqlite) {
|
|
|
|
inherit stdenv fetchurl python substituter;
|
|
|
|
sqlite = sqlite3;
|
|
|
|
};
|
2006-03-31 13:10:20 +01:00
|
|
|
};
|
2006-04-22 19:08:37 +01:00
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
}
|