2006-02-08 18:37:45 +01: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. */
|
|
|
|
|
|
|
|
|
2006-08-23 17:58:54 +02:00
|
|
|
{ # The system (e.g., `i686-linux') for which to build the packages.
|
2006-02-08 18:37:45 +01:00
|
|
|
system ? __currentSystem
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2006-08-23 17:58:54 +02:00
|
|
|
# Usually, the system type uniquely determines the stdenv and thus
|
|
|
|
# how to build the packages. But on some platforms we have
|
|
|
|
# different stdenvs, leading to different ways to build the
|
|
|
|
# packages. For instance, on Windows we support both Cygwin and
|
|
|
|
# Mingw builds. In both cases, `system' is `i686-cygwin'. The
|
|
|
|
# attribute `stdenvType' is used to select the specific kind of
|
|
|
|
# stdenv to use, e.g., `i686-mingw'.
|
|
|
|
, stdenvType ? system
|
|
|
|
|
2006-02-08 18:37:45 +01: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 19:23:18 +02:00
|
|
|
, gccWithCC ? true
|
|
|
|
, gccWithProfiling ? true
|
2004-03-11 18:26:14 +01:00
|
|
|
|
2006-02-08 18:37:45 +01:00
|
|
|
}:
|
2003-11-03 11:22:00 +01:00
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
|
2006-02-08 18:37:45 +01:00
|
|
|
rec {
|
2003-11-25 19:02:05 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2004-03-27 22:59:31 +01:00
|
|
|
### Symbolic names.
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
x11 = xlibsWrapper;
|
|
|
|
|
2005-11-12 18:05:51 +01: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 14:46:39 +02:00
|
|
|
xlibs = xorg // {xlibs = xlibsWrapper;};
|
2005-11-12 18:05:51 +01:00
|
|
|
|
2006-02-08 18:37:45 +01:00
|
|
|
|
2006-02-09 18:04:18 +01:00
|
|
|
### Helper functions.
|
|
|
|
|
2006-03-23 17:47:34 +01:00
|
|
|
|
2006-06-23 22:11:36 +02: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-08-07 15:31:18 +02:00
|
|
|
# Override the setup script of stdenv. Useful for testing new
|
|
|
|
# versions of the setup script without causing a rebuild of
|
|
|
|
# everything.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# randomPkg = (import ../bla) { ...
|
|
|
|
# stdenv = overrideSetup stdenv ../stdenv/generic/setup-latest.sh;
|
|
|
|
# };
|
|
|
|
overrideSetup = stdenv: setup: stdenv.regenerate setup;
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
# Applying this to an attribute set will cause nix-env to look
|
|
|
|
# inside the set for derivations.
|
|
|
|
recurseIntoAttrs = attrs: attrs // {recurseForDerivations = true;};
|
|
|
|
|
|
|
|
useFromStdenv = hasIt: it: alternative: if hasIt then it else alternative;
|
|
|
|
|
2006-09-28 16:12:09 +02:00
|
|
|
library = import ../lib;
|
2006-09-25 12:07:59 +02:00
|
|
|
|
2006-09-24 20:38:12 +02:00
|
|
|
# Return an attribute from the Nixpkgs configuration file, or
|
|
|
|
# a default value if the attribute doesn't exist.
|
2006-09-28 16:12:09 +02:00
|
|
|
getConfig = attrPath: default: library.getAttr attrPath default config;
|
2006-09-24 20:38:12 +02:00
|
|
|
|
|
|
|
# The contents of the configuration file found at $NIXPKGS_CONFIG or
|
|
|
|
# $HOME/.nixpkgs/config.nix.
|
|
|
|
config =
|
|
|
|
let {
|
|
|
|
toPath = builtins.toPath;
|
2006-09-24 23:49:07 +02:00
|
|
|
getEnv = x: if builtins ? getEnv then builtins.getEnv x else "";
|
2006-09-24 20:38:12 +02:00
|
|
|
pathExists = name:
|
|
|
|
builtins ? pathExists && builtins.pathExists (toPath name);
|
2006-09-24 23:49:07 +02:00
|
|
|
|
|
|
|
configFile = getEnv "NIXPKGS_CONFIG";
|
|
|
|
homeDir = getEnv "HOME";
|
2006-09-24 20:38:12 +02:00
|
|
|
configFile2 = homeDir + "/.nixpkgs/config.nix";
|
|
|
|
|
|
|
|
body =
|
|
|
|
if configFile != "" && pathExists configFile
|
|
|
|
then import (toPath configFile)
|
|
|
|
else if homeDir != "" && pathExists configFile2
|
|
|
|
then import (toPath configFile2)
|
|
|
|
else {};
|
|
|
|
};
|
|
|
|
|
2006-02-09 18:04:18 +01:00
|
|
|
|
2006-02-08 18:37:45 +01:00
|
|
|
### STANDARD ENVIRONMENT
|
|
|
|
|
|
|
|
|
|
|
|
defaultStdenv =
|
2006-02-09 16:55:20 +01:00
|
|
|
(import ../stdenv {
|
2006-08-23 17:58:54 +02:00
|
|
|
inherit system stdenvType;
|
2006-02-08 18:39:57 +01:00
|
|
|
allPackages = import ./all-packages.nix;
|
2006-02-08 18:37:45 +01:00
|
|
|
}).stdenv;
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
stdenv = if bootStdenv == null then defaultStdenv else bootStdenv;
|
2004-03-27 22:59:31 +01:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
### BUILD SUPPORT
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
|
2006-05-11 14:36:16 +02:00
|
|
|
fetchcvs = (import ../build-support/fetchcvs) {
|
|
|
|
inherit stdenv cvs nix;
|
|
|
|
};
|
|
|
|
|
2006-01-30 12:18:38 +01:00
|
|
|
fetchdarcs = (import ../build-support/fetchdarcs) {
|
|
|
|
inherit stdenv darcs nix;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
fetchsvn = (import ../build-support/fetchsvn) {
|
|
|
|
inherit stdenv subversion nix openssh;
|
|
|
|
sshSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Allow the stdenv to determine fetchurl, to cater for strange
|
|
|
|
# requirements.
|
|
|
|
fetchurl = useFromStdenv (stdenv ? fetchurl) stdenv.fetchurl
|
|
|
|
(import ../build-support/fetchurl {
|
|
|
|
inherit stdenv curl;
|
|
|
|
});
|
2005-04-22 14:14:55 +02:00
|
|
|
|
2005-04-22 20:26:04 +02:00
|
|
|
makeWrapper = ../build-support/make-wrapper/make-wrapper.sh;
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
substituter = ../build-support/substitute/substitute.sh;
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
|
|
|
|
### TOOLS
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
azureus = import ../tools/networking/p2p/azureus {
|
|
|
|
inherit fetchurl stdenv jdk swt;
|
|
|
|
};
|
|
|
|
|
2005-10-10 02:55:07 +02:00
|
|
|
bc = (import ../tools/misc/bc) {
|
|
|
|
inherit fetchurl stdenv flex;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
bittorrent = (import ../tools/networking/p2p/bittorrent) {
|
|
|
|
inherit fetchurl stdenv python pygtk makeWrapper;
|
|
|
|
};
|
|
|
|
|
|
|
|
bsdiff = (import ../tools/compression/bsdiff) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
bzip2 = useFromStdenv (stdenv ? bzip2) stdenv.bzip2
|
|
|
|
(import ../tools/compression/bzip2 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
bzip2Static = (import ../tools/compression/bzip2-static) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
cabextract = import ../tools/archivers/cabextract {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
cksfv = (import ../tools/networking/cksfv) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-02-09 18:04:18 +01:00
|
|
|
coreutils = useFromStdenv (stdenv ? coreutils) stdenv.coreutils
|
2006-03-08 16:00:18 +01:00
|
|
|
(import ../tools/misc/coreutils {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2005-08-28 16:23:30 +02:00
|
|
|
coreutilsDiet = (import ../tools/misc/coreutils-diet) {
|
|
|
|
inherit fetchurl stdenv dietgcc perl;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cpio = (import ../tools/archivers/cpio) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
curl = if stdenv ? curl then stdenv.curl else (assert false; null);
|
|
|
|
|
|
|
|
curlDiet = (import ../tools/networking/curl-diet) {
|
|
|
|
inherit fetchurl stdenv zlib dietgcc;
|
2005-08-23 15:48:43 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
dhcp = (import ../tools/networking/dhcp) {
|
|
|
|
inherit fetchurl stdenv groff nettools coreutils iputils gnused bash;
|
2006-08-26 11:44:39 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
dhcpWrapper = (import ../tools/networking/dhcp-wrapper) {
|
|
|
|
inherit stdenv dhcp;
|
2003-12-02 13:54:21 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
diffutils = useFromStdenv (stdenv ? diffutils) stdenv.diffutils
|
|
|
|
(import ../tools/text/diffutils {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
});
|
|
|
|
|
|
|
|
ed = (import ../tools/text/ed) {
|
2005-07-21 13:26:51 +02:00
|
|
|
inherit fetchurl stdenv;
|
2005-08-13 21:06:03 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
enscript = (import ../tools/text/enscript) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-07-21 13:26:51 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
exif = (import ../tools/graphics/exif) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libexif popt;
|
2005-08-23 16:19:16 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
file = (import ../tools/misc/file) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-08-08 02:09:27 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
findutils = useFromStdenv (stdenv ? findutils) stdenv.findutils
|
|
|
|
(import ../tools/misc/findutils {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
});
|
|
|
|
|
|
|
|
findutilsStatic = (import ../tools/misc/findutils-static) {
|
|
|
|
inherit stdenv fetchurl coreutils;
|
2005-07-31 22:11:36 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
findutilsWrapper = (import ../tools/misc/findutils-wrapper) {
|
|
|
|
inherit stdenv findutils;
|
2005-08-01 00:21:04 +02:00
|
|
|
};
|
2005-07-31 22:11:36 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gawk = useFromStdenv (stdenv ? gawk) stdenv.gawk
|
|
|
|
(import ../tools/text/gawk {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
getopt = (import ../tools/misc/getopt) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-10-08 01:02:58 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnugrep = useFromStdenv (stdenv ? gnugrep) stdenv.gnugrep
|
|
|
|
(import ../tools/text/gnugrep {
|
|
|
|
inherit fetchurl stdenv pcre;
|
2006-03-08 16:00:18 +01:00
|
|
|
});
|
2003-11-02 19:14:24 +01:00
|
|
|
|
2004-02-13 15:42:28 +01:00
|
|
|
gnupatch = (import ../tools/text/gnupatch) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnupg = import ../tools/security/gnupg {
|
|
|
|
inherit fetchurl stdenv readline;
|
|
|
|
ideaSupport = true; # enable for IDEA crypto support
|
|
|
|
};
|
|
|
|
|
|
|
|
gnuplot = (import ../tools/graphics/gnuplot) {
|
|
|
|
inherit fetchurl stdenv zlib libpng texinfo;
|
|
|
|
};
|
2004-08-09 16:33:14 +02:00
|
|
|
|
2006-03-08 16:00:18 +01:00
|
|
|
gnused = useFromStdenv (stdenv ? gnused) stdenv.gnused
|
|
|
|
(import ../tools/text/gnused {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnutar = useFromStdenv (stdenv ? gnutar) stdenv.gnutar
|
|
|
|
(import ../tools/archivers/gnutar {
|
2006-03-08 16:00:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 19:14:24 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnutarDiet = (import ../tools/archivers/gnutar-diet) {
|
|
|
|
inherit fetchurl stdenv dietgcc;
|
|
|
|
};
|
|
|
|
|
|
|
|
graphviz = (import ../tools/graphics/graphviz) {
|
|
|
|
inherit fetchurl stdenv libpng libjpeg expat x11 yacc libtool;
|
|
|
|
inherit (xlibs) libXaw;
|
|
|
|
};
|
|
|
|
|
2005-08-21 15:59:04 +02:00
|
|
|
groff = (import ../tools/text/groff) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
grub = (import ../tools/misc/grub) {
|
2004-06-03 19:16:16 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
grubWrapper = (import ../tools/misc/grub-wrapper) {
|
|
|
|
inherit stdenv grub diffutils gnused gnugrep coreutils;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkgnutella = (import ../tools/networking/p2p/gtk-gnutella) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libxml2;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
2005-06-20 22:35:07 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gzip = useFromStdenv (stdenv ? gzip) stdenv.gzip
|
|
|
|
(import ../tools/compression/gzip {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
hevea = (import ../tools/typesetting/hevea) {
|
|
|
|
inherit fetchurl stdenv ocaml;
|
2004-08-21 00:06:36 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jdiskreport = (import ../tools/misc/jdiskreport) {
|
|
|
|
inherit fetchurl stdenv unzip jdk;
|
2005-10-26 23:10:31 +02:00
|
|
|
};
|
|
|
|
|
2005-10-24 16:01:08 +02:00
|
|
|
jing = (import ../tools/text/xml/jing) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2004-09-26 15:03:59 +02:00
|
|
|
jing_tools = (import ../tools/text/xml/jing/jing-script.nix) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
2005-09-18 01:58:51 +02:00
|
|
|
jre = blackdown;
|
2004-09-26 15:03:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
less = (import ../tools/misc/less) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2006-07-04 21:17:34 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lhs2tex = (import ../tools/typesetting/lhs2tex) {
|
|
|
|
inherit fetchurl stdenv ghc tetex polytable;
|
2005-08-30 15:56:15 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
man = (import ../tools/misc/man) {
|
|
|
|
inherit fetchurl stdenv db4 groff;
|
2006-06-01 23:25:40 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
manpages = (import ../development/misc/man-pages) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-09-05 14:26:16 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mjpegtools = (import ../tools/video/mjpegtools) {
|
|
|
|
inherit fetchurl stdenv libjpeg;
|
|
|
|
inherit (xlibs) libX11;
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mktemp = (import ../tools/security/mktemp) {
|
2005-03-21 15:48:48 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
netcat = (import ../tools/networking/netcat) {
|
2006-08-27 15:00:20 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
nmap = (import ../tools/security/nmap) {
|
2004-11-29 20:35:42 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-11-29 22:17:29 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
openssh = (import ../tools/networking/openssh) {
|
|
|
|
inherit fetchurl stdenv zlib openssl;
|
|
|
|
inherit (xlibs) xauth;
|
|
|
|
xforwarding = true;
|
2003-11-03 19:21:30 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
par2cmdline = (import ../tools/networking/par2cmdline) {
|
|
|
|
inherit fetchurl;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2003-12-23 21:51:58 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
parted = (import ../tools/misc/parted) {
|
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline;
|
2003-11-04 09:44:46 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
patch = useFromStdenv (stdenv ? patch) stdenv.patch gnupatch;
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 17:53:04 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ploticus = (import ../tools/graphics/ploticus) {
|
|
|
|
inherit fetchurl stdenv zlib libpng;
|
|
|
|
inherit (xlibs) libX11;
|
2005-09-05 13:35:13 +02:00
|
|
|
};
|
2005-09-01 18:38:31 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
qtparted = (import ../tools/misc/qtparted) {
|
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline parted zlib;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
qt3 = qt3NoMySQL;
|
2003-12-14 21:36:43 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
realCurl = (import ../tools/networking/curl) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
2004-01-25 09:59:20 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sablotron = (import ../tools/text/xml/sablotron) {
|
|
|
|
inherit fetchurl stdenv expat;
|
2004-02-17 21:03:12 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
screen = (import ../tools/misc/screen) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2005-12-26 01:51:24 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
tightvnc = import ../tools/admin/tightvnc {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg;
|
|
|
|
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
2006-04-18 20:46:36 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
trang = import ../tools/text/xml/trang {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
jre = blackdown;
|
2005-08-21 15:59:04 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
transfig = (import ../tools/graphics/transfig) {
|
|
|
|
inherit fetchurl stdenv libpng libjpeg zlib;
|
|
|
|
inherit (xlibs) imake;
|
2005-08-21 21:46:16 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
unzip = import ../tools/archivers/unzip {
|
2006-08-15 15:22:45 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-03-11 11:46:20 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wget = (import ../tools/networking/wget) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
2006-07-17 22:35:02 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wgetDiet = (import ../tools/networking/wget) {
|
|
|
|
inherit fetchurl gettext;
|
|
|
|
stdenv = overrideGCC stdenv dietgcc;
|
2004-07-28 12:49:55 +02:00
|
|
|
};
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
which = (import ../tools/system/which) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-01-27 21:51:41 +01:00
|
|
|
};
|
|
|
|
|
2005-08-13 20:12:10 +02:00
|
|
|
xmlroff = (import ../tools/typesetting/xmlroff) {
|
2005-08-13 23:35:49 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
|
|
|
|
inherit (gtkLibs) glib pango gtk;
|
|
|
|
inherit (gnome) libgnomeprint;
|
|
|
|
inherit pangoxsl;
|
2005-08-13 20:12:10 +02:00
|
|
|
};
|
|
|
|
|
2005-01-22 01:19:27 +01:00
|
|
|
xmltv = import ../tools/misc/xmltv {
|
|
|
|
inherit fetchurl perl perlTermReadKey perlXMLTwig perlXMLWriter
|
|
|
|
perlDateManip perlHTMLTree perlHTMLParser perlHTMLTagset
|
|
|
|
perlURI perlLWP;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xpf = (import ../tools/text/xml/xpf) {
|
|
|
|
inherit fetchurl stdenv python;
|
2004-08-02 14:27:01 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
pythonSupport = true;
|
|
|
|
};
|
2004-08-03 17:41:08 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xsel = (import ../tools/misc/xsel) {
|
|
|
|
inherit fetchurl stdenv x11;
|
2004-08-06 12:01:15 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
zdelta = (import ../tools/compression/zdelta) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-12-18 23:14:31 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
zip = (import ../tools/archivers/zip) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-03-16 16:13:30 +01:00
|
|
|
};
|
2005-07-29 12:06:49 +02:00
|
|
|
|
2006-07-13 16:54:24 +02:00
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
### SHELLS
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2006-03-08 16:00:18 +01:00
|
|
|
bash = useFromStdenv (stdenv ? bash) stdenv.bash
|
|
|
|
(import ../shells/bash {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2005-12-27 15:52:29 +01:00
|
|
|
bashStatic = (import ../shells/bash-static) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-12-26 16:56:00 +01:00
|
|
|
};
|
2005-08-30 15:56:15 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
tcsh = (import ../shells/tcsh) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2003-11-03 19:21:30 +01:00
|
|
|
|
|
|
|
### DEVELOPMENT
|
|
|
|
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
abc =
|
|
|
|
abcPatchable [];
|
2006-08-05 13:02:17 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
abcPatchable = patches :
|
|
|
|
(import ../development/compilers/abc/default.nix) {
|
|
|
|
inherit stdenv fetchurl patches jre apacheAnt;
|
|
|
|
# apacheAnt = apacheAntBlackdown14;
|
|
|
|
javaCup = import ../development/libraries/java/cup {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
jdk = blackdown;
|
|
|
|
};
|
|
|
|
};
|
2005-12-31 04:46:20 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
antlr = (import ../development/tools/parsing/antlr/antlr-2.7.6.nix) {
|
|
|
|
inherit fetchurl stdenv jre;
|
2005-11-04 00:33:35 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
antlr3 = (import ../development/tools/parsing/antlr) {
|
|
|
|
inherit fetchurl stdenv jre;
|
2005-12-31 17:30:47 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
aspectj =
|
|
|
|
(import ../development/compilers/aspectj) {
|
|
|
|
inherit stdenv fetchurl jre;
|
|
|
|
};
|
2004-09-25 21:32:23 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
aterm23x = (import ../development/libraries/aterm/aterm-2.3.1.nix) {
|
2006-03-03 23:31:16 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
autoconf = autoconf259;
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2006-06-29 14:41:25 +02:00
|
|
|
autoconf259 = (import ../development/tools/misc/autoconf) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl;
|
2003-11-25 19:02:05 +01:00
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2006-06-29 14:41:25 +02:00
|
|
|
autoconf260 = (import ../development/tools/misc/autoconf-2.60) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
automake = automake19x;
|
2006-06-29 14:41:25 +02:00
|
|
|
|
2005-09-13 11:46:46 +02:00
|
|
|
automake17x = (import ../development/tools/misc/automake/automake-1.7.x.nix) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2005-03-17 10:18:49 +01:00
|
|
|
automake19x = (import ../development/tools/misc/automake/automake-1.9.x.nix) {
|
2005-01-26 10:47:20 +01:00
|
|
|
inherit fetchurl stdenv perl autoconf;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
bibtextools = (import ../tools/typesetting/bibtex-tools) {
|
|
|
|
inherit fetchurl stdenv aterm tetex hevea sdf strategoxt;
|
2003-12-23 21:51:58 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
binutils = useFromStdenv (stdenv ? binutils) stdenv.binutils
|
|
|
|
(import ../development/tools/misc/binutils {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2006-08-26 22:11:31 +02:00
|
|
|
});
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
binutilsArm = (import ../development/tools/misc/binutils-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
cross = "arm-linux";
|
2005-04-27 18:22:43 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
binutilsMips = (import ../development/tools/misc/binutils-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
cross = "mips-linux";
|
2006-07-01 02:51:14 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
binutilsSparc = (import ../development/tools/misc/binutils-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
cross = "sparc-linux";
|
2004-08-04 12:11:50 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
binutilsStatic = (import ../development/tools/misc/binutils-static) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2003-12-21 21:52:13 +01:00
|
|
|
};
|
|
|
|
|
2006-10-02 17:14:17 +02:00
|
|
|
bison = bison1875;
|
|
|
|
|
|
|
|
bison1875 = (import ../development/tools/parsing/bison/bison-1.875.nix) {
|
2005-10-24 15:01:49 +02:00
|
|
|
inherit fetchurl stdenv;
|
2006-09-15 17:28:53 +02:00
|
|
|
m4 = gnum4;
|
2004-01-21 15:50:18 +01:00
|
|
|
};
|
|
|
|
|
2006-10-02 17:14:17 +02:00
|
|
|
bison23 = (import ../development/tools/parsing/bison/bison-2.3.nix) {
|
2006-09-15 17:28:53 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
m4 = gnum4;
|
2004-03-05 11:13:23 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
blackdown = (import ../development/compilers/blackdown) {
|
2004-03-05 11:13:23 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-11-21 13:50:37 +01:00
|
|
|
ctags = (import ../development/tools/misc/ctags) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
dietgcc = (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = (import ../os-specific/linux/dietlibc-wrapper) {
|
|
|
|
inherit stdenv dietlibc;
|
|
|
|
#gcc = stdenv.gcc;
|
|
|
|
gcc = gcc34;
|
|
|
|
};
|
|
|
|
#inherit (stdenv.gcc) binutils glibc;
|
|
|
|
inherit (gcc34) binutils;
|
|
|
|
glibc = dietlibc;
|
|
|
|
inherit stdenv;
|
2003-11-06 13:43:25 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ecj = (import ../development/eclipse/ecj) {
|
|
|
|
inherit fetchurl stdenv unzip jre;
|
|
|
|
ant = apacheAntBlackdown14;
|
2004-01-30 16:52:17 +01:00
|
|
|
};
|
|
|
|
|
2006-10-02 17:14:17 +02:00
|
|
|
flex = flex254a;
|
|
|
|
|
|
|
|
flex254a = (import ../development/tools/parsing/flex/flex-2.5.4a.nix) {
|
2004-09-22 10:49:22 +02:00
|
|
|
inherit fetchurl stdenv yacc;
|
2003-11-06 13:43:25 +01:00
|
|
|
};
|
|
|
|
|
2005-08-29 19:54:40 +02:00
|
|
|
#flexWrapper = (import ../development/tools/parsing/flex-wrapper) {
|
|
|
|
# inherit stdenv flex ;
|
|
|
|
#};
|
2005-08-27 22:48:05 +02:00
|
|
|
|
2006-10-02 17:14:17 +02:00
|
|
|
flex2533 = (import ../development/tools/parsing/flex/flex-2.5.33.nix) {
|
2004-09-22 10:49:22 +02:00
|
|
|
inherit fetchurl stdenv yacc;
|
2004-01-30 18:23:34 +01:00
|
|
|
m4 = gnum4;
|
2004-01-30 11:10:06 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
g77 = (import ../build-support/gcc-wrapper) {
|
|
|
|
name = "g77";
|
2005-08-28 02:19:42 +02:00
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2006-09-15 17:28:53 +02:00
|
|
|
gcc = (import ../development/compilers/gcc-3.3) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
2005-08-28 02:19:42 +02:00
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
inherit (stdenv.gcc) binutils glibc;
|
2005-08-28 02:19:42 +02:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gcc = useFromStdenv (stdenv ? gcc) stdenv.gcc gcc41;
|
2004-06-29 10:25:55 +02:00
|
|
|
|
2006-07-10 17:42:19 +02: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;
|
|
|
|
});
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gcc40arm = (import ../build-support/gcc-cross-wrapper) {
|
2005-12-31 17:30:47 +01:00
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2006-09-15 17:28:53 +02:00
|
|
|
cross = "arm-linux";
|
2005-12-31 17:30:47 +01:00
|
|
|
gcc = (import ../development/compilers/gcc-4.0-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = false;
|
|
|
|
langCC = false;
|
2006-09-15 17:28:53 +02:00
|
|
|
binutilsCross = binutilsArm;
|
|
|
|
kernelHeadersCross = kernelHeadersArm;
|
|
|
|
cross = "arm-linux";
|
2005-12-31 17:30:47 +01:00
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) glibc;
|
2006-09-15 17:28:53 +02:00
|
|
|
binutils = binutilsArm;
|
2005-12-31 17:30:47 +01:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2005-12-31 15:35:49 +01:00
|
|
|
gcc40mips = (import ../build-support/gcc-cross-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
cross = "mips-linux";
|
2006-03-01 20:11:42 +01:00
|
|
|
gcc = gcc40mipsboot;
|
|
|
|
#inherit (stdenv.gcc) glibc;
|
|
|
|
glibc = uclibcMips;
|
2005-12-31 15:35:49 +01:00
|
|
|
binutils = binutilsMips;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gcc40mipsboot = (import ../development/compilers/gcc-4.0-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = false;
|
|
|
|
langCC = false;
|
|
|
|
binutilsCross = binutilsMips;
|
|
|
|
kernelHeadersCross = kernelHeadersMips;
|
|
|
|
cross = "mips-linux";
|
|
|
|
};
|
|
|
|
|
|
|
|
gcc40sparc = (import ../build-support/gcc-cross-wrapper) {
|
2005-11-29 02:43:11 +01:00
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
2006-09-15 17:28:53 +02:00
|
|
|
cross = "sparc-linux";
|
2005-12-31 15:35:49 +01:00
|
|
|
gcc = (import ../development/compilers/gcc-4.0-cross) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2005-11-29 02:43:11 +01:00
|
|
|
langF77 = false;
|
|
|
|
langCC = false;
|
2006-09-15 17:28:53 +02:00
|
|
|
binutilsCross = binutilsSparc;
|
|
|
|
kernelHeadersCross = kernelHeadersSparc;
|
|
|
|
cross = "sparc-linux";
|
2005-11-29 02:43:11 +01:00
|
|
|
};
|
2005-12-31 04:46:20 +01:00
|
|
|
inherit (stdenv.gcc) glibc;
|
2006-09-15 17:28:53 +02:00
|
|
|
binutils = binutilsSparc;
|
2005-11-29 02:43:11 +01:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
2005-12-31 15:35:49 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gcc41 = wrapGCC (import ../development/compilers/gcc-4.1 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
gccApple = wrapGCC (import ../development/compilers/gcc-apple {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
gccStatic = (import ../development/compilers/gcc-static-3.4) {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2004-03-05 11:13:23 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gccStaticBootstrap = (import ../development/compilers/gcc-static-3.4) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
noSysDirs = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
ghc = (import ../development/compilers/ghc) {
|
|
|
|
inherit fetchurl stdenv perl ncurses readline;
|
|
|
|
gcc = stdenv.gcc;
|
|
|
|
ghc = ghcboot;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
|
|
|
ghcboot = (import ../development/compilers/ghc/boot.nix) {
|
|
|
|
inherit fetchurl stdenv perl ncurses;
|
|
|
|
readline = readline4;
|
|
|
|
};
|
|
|
|
|
|
|
|
ghcWrapper = assert uulib.ghc == ghc;
|
|
|
|
(import ../development/compilers/ghc-wrapper) {
|
|
|
|
inherit stdenv ghc;
|
|
|
|
libraries = [ uulib ];
|
2005-08-17 16:29:04 +02:00
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
gnum4 = (import ../development/tools/misc/gnum4) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-17 16:29:04 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnumake = useFromStdenv (stdenv ? gnumake) stdenv.gnumake
|
|
|
|
(import ../development/tools/build-managers/gnumake {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
gnumake380 = import ../development/tools/build-managers/gnumake-3.80 {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-12 19:30:45 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gperf = (import ../development/tools/misc/gperf) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
harp = (import ../development/compilers/harp) {
|
|
|
|
inherit fetchurl stdenv unzip ghc happy;
|
2005-09-06 02:00:22 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
helium = (import ../development/compilers/helium) {
|
|
|
|
inherit fetchurl stdenv ghc;
|
2005-09-07 12:08:00 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
help2man = (import ../development/tools/misc/help2man) {
|
|
|
|
inherit fetchurl stdenv perl gettext perlLocaleGettext;
|
|
|
|
};
|
|
|
|
|
|
|
|
j2sdk14x = (import ../development/compilers/jdk/default-1.4.nix) {
|
2004-08-24 11:12:01 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-10-04 17:01:38 +02:00
|
|
|
jdk =
|
2006-07-17 13:07:32 +02:00
|
|
|
if stdenv.isDarwin then
|
2005-10-04 17:01:38 +02:00
|
|
|
"/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home"
|
|
|
|
else
|
|
|
|
(import ../development/compilers/jdk) {
|
2005-10-07 16:49:37 +02:00
|
|
|
inherit fetchurl stdenv unzip;
|
2005-10-08 00:27:42 +02:00
|
|
|
inherit (xlibs) libX11 libXext;
|
2005-10-04 17:01:38 +02:00
|
|
|
};
|
2003-12-21 21:52:13 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jdtsdk = (import ../development/eclipse/jdt-sdk) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
jikes = (import ../development/compilers/jikes) {
|
2004-05-12 17:06:23 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
kcachegrind = (import ../development/tools/misc/kcachegrind) {
|
|
|
|
inherit fetchurl stdenv kdelibs zlib perl expat libpng libjpeg;
|
|
|
|
inherit (xlibs) libX11 libXext libSM;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
2006-03-26 05:52:55 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lcov = (import ../development/tools/misc/lcov) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
2006-03-26 05:21:32 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libtool = (import ../development/tools/misc/libtool) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
m4 = gnum4;
|
|
|
|
};
|
|
|
|
|
|
|
|
mk = (import ../development/tools/build-managers/mk) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
mono = (import ../development/compilers/mono) {
|
|
|
|
inherit fetchurl stdenv bison pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
|
|
|
monoDLLFixer = import ../build-support/mono-dll-fixer {
|
|
|
|
inherit stdenv perl;
|
|
|
|
};
|
|
|
|
|
|
|
|
nasm = (import ../development/compilers/nasm) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
noweb = (import ../development/tools/literate-programming/noweb) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-03-26 05:21:32 +02:00
|
|
|
|
2004-07-28 12:08:31 +02:00
|
|
|
ocaml = (import ../development/compilers/ocaml) {
|
2004-07-28 13:16:25 +02:00
|
|
|
inherit fetchurl stdenv x11;
|
2004-07-17 00:58:15 +02:00
|
|
|
};
|
|
|
|
|
2006-03-01 10:18:22 +01:00
|
|
|
ocaml3080 = (import ../development/compilers/ocaml/ocaml-3.08.0.nix) {
|
2006-06-23 22:11:36 +02:00
|
|
|
inherit fetchurl x11;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2006-03-01 10:18:22 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
octave = (import ../development/interpreters/octave) {
|
|
|
|
inherit fetchurl stdenv readline ncurses g77 perl flex;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
|
|
|
opencxx = (import ../development/compilers/opencxx) {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
gcc = gcc33;
|
|
|
|
};
|
|
|
|
|
|
|
|
patchelf = useFromStdenv (stdenv ? patchelf) stdenv.patchelf
|
|
|
|
(import ../development/tools/misc/patchelf {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
patchelfNew = (import ../development/tools/misc/patchelf/new.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* pkgconfig is optionally taken from the stdenv to allow bootstrapping
|
|
|
|
* of glib and pkgconfig itself on MinGW.
|
|
|
|
*/
|
|
|
|
pkgconfig = useFromStdenv (stdenv ? pkgconfig) stdenv.pkgconfig
|
|
|
|
(import ../development/tools/misc/pkgconfig {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
pkgconfig017x = (import ../development/tools/misc/pkgconfig/pkgconfig-0.17.2.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
pkgconfig_latest = (import ../development/tools/misc/pkgconfig/pkgconfig-0.21.nix) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-02-02 18:07:07 +01:00
|
|
|
qcmm = (import ../development/compilers/qcmm) {
|
2006-03-01 10:18:22 +01:00
|
|
|
lua = lua4;
|
|
|
|
ocaml = ocaml3080;
|
|
|
|
inherit fetchurl stdenv mk noweb groff;
|
2006-02-02 18:07:07 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
scons = (import ../development/tools/build-managers/scons) {
|
|
|
|
inherit fetchurl stdenv python;
|
2005-02-27 00:45:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
strace = (import ../development/tools/misc/strace) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
strategoLibraries = (import ../development/compilers/strategoxt/libraries/stratego-libraries-0.17pre.nix) {
|
|
|
|
inherit stdenv fetchurl pkgconfig aterm;
|
2005-03-03 18:19:58 +01:00
|
|
|
};
|
|
|
|
|
2004-08-10 13:07:50 +02:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt) {
|
2006-06-23 22:11:36 +02:00
|
|
|
inherit fetchurl pkgconfig sdf aterm;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2005-10-31 15:28:11 +01:00
|
|
|
};
|
|
|
|
|
2005-06-30 18:54:25 +02:00
|
|
|
strategoxtUtils = (import ../development/compilers/strategoxt/utils) {
|
2005-11-04 20:20:51 +01:00
|
|
|
inherit fetchurl pkgconfig stdenv aterm sdf strategoxt;
|
2005-06-30 18:54:25 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
swig = (import ../development/tools/misc/swig) {
|
|
|
|
inherit fetchurl stdenv perl python;
|
|
|
|
perlSupport = true;
|
|
|
|
pythonSupport = true;
|
|
|
|
javaSupport = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
swigWithJava = (import ../development/tools/misc/swig) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
jdk = blackdown;
|
|
|
|
perlSupport = false;
|
|
|
|
pythonSupport = false;
|
|
|
|
javaSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
texinfo = (import ../development/tools/misc/texinfo) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2004-08-17 13:53:31 +02:00
|
|
|
};
|
|
|
|
|
2005-12-22 08:39:06 +01:00
|
|
|
transformers = (import ../development/compilers/transformers) {
|
2006-06-24 13:16:29 +02:00
|
|
|
inherit fetchurl pkgconfig sdf;
|
2005-12-22 08:39:06 +01:00
|
|
|
aterm = aterm23x;
|
|
|
|
|
2006-06-24 13:16:29 +02:00
|
|
|
stdenv = overrideGCC (overrideInStdenv stdenv [gnumake380]) gcc34;
|
|
|
|
|
2005-12-22 08:39:06 +01:00
|
|
|
strategoxt = (import ../development/compilers/strategoxt/strategoxt-0.14.nix) {
|
2006-06-24 00:47:19 +02:00
|
|
|
inherit fetchurl pkgconfig sdf;
|
2005-12-22 08:39:06 +01:00
|
|
|
aterm = aterm23x;
|
2006-06-24 12:28:50 +02:00
|
|
|
stdenv = overrideGCC (overrideInStdenv stdenv [gnumake380]) gcc34;
|
2005-12-22 08:39:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
stlport = (import ../development/libraries/stlport) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-01-27 11:16:15 +01:00
|
|
|
uuagc = (import ../development/tools/haskell/uuagc) {
|
|
|
|
inherit fetchurl stdenv ghc uulib;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
valgrind = (import ../development/tools/misc/valgrind) {
|
2004-09-26 20:12:51 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-06-02 11:56:10 +02:00
|
|
|
visualcpp = import ../development/compilers/visual-c++ {
|
2006-06-05 21:26:11 +02:00
|
|
|
inherit fetchurl stdenv cabextract;
|
2006-06-02 11:56:10 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
win32hello = import ../development/compilers/visual-c++/test {
|
|
|
|
inherit fetchurl stdenv visualcpp windowssdk;
|
|
|
|
};
|
|
|
|
|
2006-06-05 21:40:14 +02:00
|
|
|
windowssdk = import ../development/misc/windows-sdk {
|
|
|
|
inherit fetchurl stdenv cabextract;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wrapGCC = baseGCC: (import ../build-support/gcc-wrapper) {
|
|
|
|
nativeTools = false;
|
|
|
|
nativeGlibc = false;
|
|
|
|
gcc = baseGCC;
|
|
|
|
inherit stdenv binutils glibc;
|
2006-06-02 12:09:19 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
yacc = bison;
|
|
|
|
|
2006-06-02 11:56:10 +02:00
|
|
|
|
2005-11-22 13:05:36 +01:00
|
|
|
### DEVELOPMENT / DEBUGGERS
|
2006-09-15 17:28:53 +02:00
|
|
|
### DEVELOPMENT / INTERPRETERS
|
2005-11-22 13:05:36 +01:00
|
|
|
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
a52dec = (import ../development/libraries/a52dec) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-06-02 11:56:10 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
aalib = (import ../development/libraries/aalib) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2005-09-11 17:38:59 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
apacheAnt = (import ../development/tools/build-managers/apache-ant) {
|
|
|
|
inherit fetchurl stdenv jdk;
|
|
|
|
name = "ant-jdk-1.5.0";
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
apacheAnt14 = (import ../development/tools/build-managers/apache-ant) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2006-09-15 17:28:53 +02:00
|
|
|
jdk = j2sdk14x;
|
|
|
|
name = "ant-jdk-1.4.2";
|
2004-01-24 23:04:09 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
apacheAntBlackdown14 = (import ../development/tools/build-managers/apache-ant) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
jdk = blackdown;
|
|
|
|
name = "ant-blackdown-1.4.2";
|
2004-07-01 18:57:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
apr = import ../development/libraries/apr {
|
|
|
|
inherit fetchurl stdenv;
|
2004-01-24 23:50:47 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
aprutil = import ../development/libraries/apr-util {
|
|
|
|
inherit fetchurl stdenv apr expat db4;
|
|
|
|
bdbSupport = true;
|
2005-05-05 01:36:28 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
arts = import ../development/libraries/kde/arts {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
inherit kdelibs zlib libjpeg libpng perl;
|
|
|
|
qt = qt3;
|
|
|
|
inherit (gnome) glib;
|
2006-04-26 16:47:16 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
aterm = (import ../development/libraries/aterm) {
|
2006-02-02 18:07:07 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
audiofile = (import ../development/libraries/audiofile) {
|
2006-02-02 18:07:07 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
axis = (import ../development/libraries/axis) {
|
2005-11-22 13:05:36 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
beecrypt = (import ../development/libraries/beecrypt) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
m4 = gnum4;
|
2004-11-19 18:47:17 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cairo = (import ../development/libraries/cairo) {
|
|
|
|
inherit fetchurl stdenv pkgconfig x11 fontconfig freetype zlib libpng;
|
2004-08-23 12:44:21 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
chmlib = (import ../development/libraries/chmlib) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-09-12 00:39:06 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cil = (import ../development/libraries/cil) {
|
|
|
|
inherit stdenv fetchurl ocaml perl;
|
2005-02-27 00:45:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cilaterm = (import ../development/libraries/cil-aterm) {
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
inherit fetchurl perl ocaml;
|
2004-01-25 00:46:00 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
clearsilver = import ../development/libraries/clearsilver {
|
|
|
|
inherit fetchurl stdenv python;
|
2004-08-23 19:06:50 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
clisp = (import ../development/interpreters/clisp) {
|
|
|
|
inherit fetchurl stdenv libsigsegv gettext;
|
2006-08-02 19:27:42 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
coredumper = (import ../development/libraries/coredumper) {
|
2005-10-10 02:55:07 +02:00
|
|
|
inherit fetchurl stdenv;
|
2004-08-10 13:07:50 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cracklib = (import ../development/libraries/cracklib) {
|
2004-08-24 13:26:26 +02:00
|
|
|
inherit fetchurl stdenv;
|
2006-09-15 17:28:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
db4 = (import ../development/libraries/db4) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
dclib = (import ../development/libraries/dclib) {
|
|
|
|
inherit fetchurl stdenv libxml2 openssl bzip2;
|
2004-08-24 13:26:26 +02:00
|
|
|
};
|
|
|
|
|
2005-09-12 16:44:19 +02:00
|
|
|
dovecot = (import ../servers/mail/dovecot) {
|
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
};
|
2006-09-15 17:28:53 +02: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;
|
|
|
|
};
|
2005-09-12 17:20:57 +02:00
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
expat = (import ../development/libraries/expat) {
|
|
|
|
inherit fetchurl stdenv;
|
2004-01-25 01:50:00 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ffmpeg = import ../development/libraries/ffmpeg {
|
2005-12-19 19:56:31 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
fontconfig = import ../development/libraries/fontconfig {
|
|
|
|
inherit fetchurl stdenv freetype expat;
|
2005-05-09 17:56:34 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
freetype = (import ../development/libraries/freetype) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-01-02 15:24:36 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
fribidi = (import ../development/libraries/fribidi) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 18:42:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gettext = (import ../development/libraries/gettext) {
|
2006-06-21 23:05:39 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-07-10 17:42:19 +02:00
|
|
|
glibc = useFromStdenv (stdenv ? glibc) stdenv.glibc
|
|
|
|
(import ../development/libraries/glibc {
|
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
|
|
|
installLocales = true;
|
|
|
|
});
|
2003-11-02 23:25:26 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
glibmm = import ../development/libraries/gtk-libs-2.6/glibmm {
|
|
|
|
inherit fetchurl stdenv pkgconfig libsigcxx;
|
|
|
|
inherit (gtkLibs26) glib;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 23:25:26 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnet = (import ../development/libraries/gnet) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
2004-01-22 20:09:49 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gnome = recurseIntoAttrs (import ../development/libraries/gnome {
|
|
|
|
inherit fetchurl stdenv pkgconfig audiofile
|
|
|
|
flex bison popt zlib libxml2 libxslt
|
|
|
|
perl perlXMLParser docbook_xml_dtd_42 gettext x11
|
|
|
|
libtiff libjpeg libpng bzip2;
|
|
|
|
gtkLibs = gtkLibs28;
|
|
|
|
inherit (xlibs) libXmu;
|
|
|
|
});
|
|
|
|
|
|
|
|
gpgme = (import ../development/libraries/gpgme) {
|
|
|
|
inherit fetchurl stdenv libgpgerror gnupg;
|
2006-03-14 19:20:21 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkLibs = recurseIntoAttrs gtkLibs28 /* !!! -> gtkLibs10 */;
|
|
|
|
|
|
|
|
gtkLibs1x = import ../development/libraries/gtk-libs-1.x {
|
|
|
|
inherit fetchurl stdenv x11 libtiff libjpeg libpng;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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-01-19 22:12:46 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkLibs22 = import ../development/libraries/gtk-libs-2.2 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
2005-01-19 22:48:45 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkLibs24 = import ../development/libraries/gtk-libs-2.4 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
2005-01-19 22:48:45 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkLibs26 = import ../development/libraries/gtk-libs-2.6 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng;
|
2006-01-07 18:25:39 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkLibs28 = import ../development/libraries/gtk-libs-2.8 {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
|
|
|
libtiff libjpeg libpng cairo;
|
|
|
|
inherit (xlibs) libXinerama;
|
|
|
|
xineramaSupport = true;
|
2005-11-22 23:32:18 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkmm = import ../development/libraries/gtk-libs-2.6/gtkmm {
|
|
|
|
inherit fetchurl stdenv pkgconfig libsigcxx;
|
|
|
|
inherit (gtkLibs26) gtk atk;
|
|
|
|
inherit glibmm;
|
2005-02-16 17:18:43 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
|
|
|
inherit (gnome) gtk;
|
|
|
|
gtksharp = gtksharp2;
|
2005-10-26 23:10:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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
|
|
|
|
libgnomeprintui GConf;
|
2005-10-26 23:10:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtksharp2 = (import ../development/libraries/gtk-sharp-2) {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
|
|
|
|
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeui libgnomeprint
|
|
|
|
libgnomeprintui GConf gnomepanel;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gtksourceviewsharp = import ../development/libraries/gtksourceview-sharp {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
|
|
|
inherit (gnome) gtksourceview;
|
|
|
|
gtksharp = gtksharp2;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
guile = (import ../development/interpreters/guile) {
|
|
|
|
inherit fetchurl stdenv ncurses readline;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
#ltrace = (import ../development/debuggers/ltrace) {
|
|
|
|
# inherit fetchurl stdenv;
|
|
|
|
#};
|
|
|
|
|
|
|
|
happy = (import ../development/tools/parsing/happy) {
|
|
|
|
inherit fetchurl stdenv perl ghc;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
imlib = (import ../development/libraries/gnome/imlib) {
|
|
|
|
inherit fetchurl stdenv libjpeg libtiff libungif libpng;
|
|
|
|
inherit (xlibs) libX11 libXext xextproto;
|
2003-11-05 13:17:48 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jikespg = (import ../development/tools/parsing/jikespg) {
|
2005-10-26 23:10:31 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jre = (import ../development/interpreters/jre) {
|
2005-10-26 23:10:31 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
kaffe = (import ../development/interpreters/kaffe) {
|
|
|
|
inherit fetchurl stdenv jikes alsaLib xlibs;
|
2005-10-26 23:10:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
kdelibs = import ../development/libraries/kde/kdelibs {
|
|
|
|
inherit
|
|
|
|
fetchurl stdenv zlib perl openssl pcre pkgconfig
|
|
|
|
libjpeg libpng libtiff libxml2 libxslt libtool
|
|
|
|
expat freetype bzip2;
|
|
|
|
inherit (xlibs) libX11 libXt libXext;
|
|
|
|
qt = qt3;
|
2005-08-24 11:54:42 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lcms = (import ../development/libraries/lcms) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libcaca = (import ../development/libraries/libcaca) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2006-07-08 14:44:39 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libcdaudio = (import ../development/libraries/libcdaudio) {
|
2004-09-18 19:58:42 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libdrm = import ../development/libraries/libdrm {
|
2006-07-25 10:44:05 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libdvdcss = (import ../development/libraries/libdvdcss) {
|
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libdvdnav = import ../development/libraries/libdvdnav {
|
|
|
|
inherit fetchurl stdenv;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libdvdread = (import ../development/libraries/libdvdread) {
|
|
|
|
inherit fetchurl stdenv libdvdcss;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-10-08 12:31:55 +02:00
|
|
|
libevent = (import ../development/libraries/libevent) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libexif = (import ../development/libraries/libexif) {
|
2006-08-13 11:46:54 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libgpgerror = (import ../development/libraries/libgpg-error) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-08-13 11:46:54 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libgphoto2 = (import ../development/libraries/libgphoto2) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libusb;
|
2005-08-24 16:26:32 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libgsf = (import ../development/libraries/libgsf) {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig libxml2;
|
|
|
|
inherit (gnome) glib;
|
2006-04-03 15:02:05 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libjpeg = (import ../development/libraries/libjpeg) {
|
|
|
|
inherit fetchurl stdenv libtool;
|
2005-08-24 17:02:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libmad = (import ../development/libraries/libmad) {
|
2004-08-23 11:35:36 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libmspack = (import ../development/libraries/libmspack) {
|
2005-03-11 11:46:20 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libogg = (import ../development/libraries/libogg) {
|
2005-03-11 11:55:21 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libpcap = (import ../development/libraries/libpcap) {
|
|
|
|
inherit fetchurl stdenv flex bison;
|
2006-04-22 20:08:37 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libpng = (import ../development/libraries/libpng) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
2005-03-11 12:02:31 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libsigcxx = import ../development/libraries/libsigcxx {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
2005-03-11 12:08:38 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libsigsegv = (import ../development/libraries/libsigsegv) {
|
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libsndfile = (import ../development/libraries/libsndfile) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-08-27 21:59:45 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libtheora = (import ../development/libraries/libtheora) {
|
|
|
|
inherit fetchurl stdenv libogg libvorbis;
|
2005-12-26 16:56:00 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libtiff = (import ../development/libraries/libtiff) {
|
|
|
|
inherit fetchurl stdenv zlib libjpeg;
|
2005-10-12 13:57:24 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libungif = (import ../development/libraries/libungif) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-07-04 18:58:25 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libusb = (import ../development/libraries/libusb) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-10-12 13:57:24 +02:00
|
|
|
};
|
2005-02-15 17:22:20 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libvorbis = (import ../development/libraries/libvorbis) {
|
|
|
|
inherit fetchurl stdenv libogg;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libwpd = (import ../development/libraries/libwpd) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libgsf libxml2;
|
|
|
|
inherit (gnome) glib;
|
2005-02-15 17:22:20 +01:00
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
libxml2 = (import ../development/libraries/libxml2) {
|
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
# pythonSupport = stdenv.system == "i686-linux";
|
|
|
|
pythonSupport = false;
|
2004-04-05 16:09:01 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libxslt = (import ../development/libraries/libxslt) {
|
|
|
|
inherit fetchurl stdenv libxml2;
|
2003-11-06 17:28:57 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lua4 = (import ../development/interpreters/lua-4) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-09-07 16:57:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lua5 = (import ../development/interpreters/lua-5) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-09-07 16:57:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mesa = (import ../development/libraries/mesa) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXmu libXi;
|
2005-09-07 16:57:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mpeg2dec = (import ../development/libraries/mpeg2dec) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-13 23:35:49 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mysqlConnectorODBC = import ../development/libraries/mysql-connector-odbc {
|
|
|
|
inherit fetchurl stdenv mysql libtool zlib unixODBC;
|
2006-06-18 00:04:42 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ncurses = (import ../development/libraries/ncurses) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-01-19 23:51:27 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ncursesDiet = (import ../development/libraries/ncurses-diet) {
|
|
|
|
inherit fetchurl;
|
|
|
|
stdenv = overrideGCC stdenv dietgcc;
|
2005-11-12 15:52:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
neon = (import ../development/libraries/neon) {
|
|
|
|
inherit fetchurl stdenv libxml2 zlib openssl;
|
|
|
|
compressionSupport = true;
|
|
|
|
sslSupport = true;
|
2006-08-13 11:46:54 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
nss = (import ../development/libraries/nss) {
|
|
|
|
inherit fetchurl stdenv perl zip;
|
2005-03-09 18:49:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
openal = import ../development/libraries/openal {
|
|
|
|
inherit fetchurl stdenv alsaLib autoconf automake libtool;
|
2005-02-27 00:45:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
openssl = (import ../development/libraries/openssl) {
|
|
|
|
inherit fetchurl stdenv perl;
|
2005-03-08 16:44:23 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
pangoxsl = (import ../development/libraries/pangoxsl) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib pango;
|
2005-03-08 19:52:35 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
pcre = (import ../development/libraries/pcre) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perl = if stdenv.system != "i686-linux" then sysPerl else realPerl;
|
2005-10-19 17:15:37 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
# FIXME: unixODBC needs patching on Darwin (see darwinports)
|
|
|
|
php = (import ../development/interpreters/php) {
|
|
|
|
inherit stdenv fetchurl flex bison libxml2 apacheHttpd;
|
|
|
|
unixODBC =
|
|
|
|
if stdenv.isDarwin then null else unixODBC;
|
2004-09-21 17:31:23 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
popt = (import ../development/libraries/popt) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
popt110 = (import ../development/libraries/popt/popt-1.10.6.nix) {
|
|
|
|
inherit fetchurl stdenv gettext libtool autoconf automake;
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
2003-11-05 13:17:48 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
python = (import ../development/interpreters/python) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
qt3 = import ../development/libraries/qt-3 {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql mesa;
|
|
|
|
inherit (xlibs) libXft libXrender libXrandr randrproto
|
|
|
|
libXmu libXinerama xineramaproto;
|
|
|
|
openglSupport = true;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
qt3NoMySQL = import ../development/libraries/qt-3 {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql;
|
|
|
|
inherit (xlibs) libXft libXrender;
|
|
|
|
mysqlSupport = false;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
realPerl = (import ../development/interpreters/perl) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
rte = (import ../development/libraries/rte) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ruby = (import ../development/interpreters/ruby) {
|
|
|
|
inherit fetchurl stdenv readline ncurses;
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sdf = (import ../development/tools/parsing/sdf) {
|
|
|
|
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];
|
2006-06-29 14:41:25 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
slang = (import ../development/libraries/slang) {
|
|
|
|
inherit fetchurl stdenv pcre libpng;
|
2004-01-25 09:51:03 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
speex = (import ../development/libraries/speex) {
|
2004-06-21 22:41:32 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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;
|
2004-12-11 00:16:23 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sqlite = (import ../development/libraries/sqlite) {
|
2004-03-05 11:13:23 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sqlite3 = (import ../development/libraries/sqlite-3.3) {
|
|
|
|
inherit stdenv fetchurl;
|
2006-07-30 20:29:23 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sysPerl = (import ../development/interpreters/sys-perl) {
|
|
|
|
inherit stdenv;
|
2005-11-04 14:07:22 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
tcl = (import ../development/interpreters/tcl) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-11-12 18:05:51 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
tomcat5 = (import ../servers/http/tomcat) {
|
|
|
|
inherit fetchurl stdenv ;
|
|
|
|
jdk = blackdown;
|
2005-11-12 18:05:51 +01:00
|
|
|
};
|
2005-11-01 21:27:57 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
unixODBC = import ../development/libraries/unixODBC {
|
2005-11-01 21:27:57 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
vsftpd = (import ../servers/ftp/vsftpd) {
|
|
|
|
inherit fetchurl stdenv openssl ;
|
2005-11-03 21:00:43 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wxGTK = wxGTK26;
|
|
|
|
|
|
|
|
wxGTK24 = (import ../development/libraries/wxGTK) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs22) gtk;
|
2004-06-09 19:53:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wxGTK25 = (import ../development/libraries/wxGTK-2.5) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama;
|
2004-04-06 19:47:34 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wxGTK26 = (import ../development/libraries/wxGTK-2.6) {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama;
|
2005-08-30 09:39:38 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
Xaw3d = import ../development/libraries/Xaw3d {
|
|
|
|
inherit fetchurl stdenv x11 bison;
|
2006-10-02 17:14:17 +02:00
|
|
|
flex = flex2533;
|
2006-09-15 17:28:53 +02:00
|
|
|
inherit (xlibs) imake gccmakedep libXmu libXpm libXp;
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xineLib = (import ../development/libraries/xine-lib) {
|
|
|
|
inherit fetchurl stdenv zlib x11 libdvdcss alsaLib;
|
|
|
|
inherit (xlibs) libXv libXinerama;
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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
|
|
|
|
];
|
2006-01-26 15:01:08 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
zlib = (import ../development/libraries/zlib) {
|
2006-03-15 13:43:40 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
zlibStatic = (import ../development/libraries/zlib) {
|
2006-09-11 10:45:01 +02:00
|
|
|
inherit fetchurl stdenv;
|
2006-09-15 17:28:53 +02:00
|
|
|
static = true;
|
2006-09-11 10:45:01 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
zvbi = (import ../development/libraries/zvbi) {
|
|
|
|
inherit fetchurl stdenv libpng x11;
|
|
|
|
pngSupport = true;
|
2006-09-11 11:17:28 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2005-09-11 17:38:59 +02:00
|
|
|
### DEVELOPMENT / LIBRARIES / JAVA
|
|
|
|
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
atermjava = (import ../development/libraries/java/aterm) {
|
|
|
|
inherit fetchurl sharedobjects jjtraveler jdk;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
commonsFileUpload = import ../development/libraries/java/jakarta-commons/file-upload {
|
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
httpunit = import ../development/libraries/java/httpunit {
|
|
|
|
inherit stdenv fetchurl unzip;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jakartabcel = (import ../development/libraries/java/jakarta-bcel) {
|
|
|
|
regexp = jakartaregexp;
|
|
|
|
inherit fetchurl stdenv;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
jakartaregexp = (import ../development/libraries/java/jakarta-regexp) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
javaCup = import ../development/libraries/java/cup {
|
|
|
|
inherit stdenv fetchurl jdk;
|
|
|
|
};
|
|
|
|
|
|
|
|
javasvn = import ../development/libraries/java/javasvn {
|
|
|
|
inherit stdenv fetchurl unzip;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
jclasslib = (import ../development/tools/java/jclasslib) {
|
2005-09-18 01:58:51 +02:00
|
|
|
inherit fetchurl stdenv xpf jre;
|
2005-09-11 17:38:59 +02:00
|
|
|
ant = apacheAnt14;
|
|
|
|
};
|
|
|
|
|
|
|
|
jdom = import ../development/libraries/java/jdom {
|
2005-12-26 01:51:24 +01:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
jflex = import ../development/libraries/java/jflex {
|
2005-12-26 01:51:24 +01:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jjtraveler = (import ../development/libraries/java/jjtraveler) {
|
|
|
|
inherit fetchurl jdk;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
junit = import ../development/libraries/java/junit {
|
2005-12-26 01:51:24 +01:00
|
|
|
inherit stdenv fetchurl unzip;
|
2005-10-03 10:17:09 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lucene = import ../development/libraries/java/lucene {
|
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
mockobjects = import ../development/libraries/java/mockobjects {
|
2005-12-26 01:51:24 +01:00
|
|
|
inherit stdenv fetchurl;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
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) {
|
|
|
|
inherit fetchurl jdk;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2005-12-26 01:51:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
swt = import ../development/libraries/java/swt {
|
|
|
|
inherit stdenv fetchurl unzip jdk pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXtst;
|
2005-09-11 17:38:59 +02:00
|
|
|
};
|
|
|
|
|
2006-04-25 15:12:45 +02:00
|
|
|
xalanj = import ../development/libraries/java/xalanj {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2006-01-25 12:19:21 +01:00
|
|
|
### DEVELOPMENT / LIBRARIES / HASKELL
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2006-01-25 12:19:21 +01:00
|
|
|
uulib = import ../development/libraries/haskell/uulib {
|
|
|
|
inherit stdenv fetchurl ghc;
|
|
|
|
};
|
2006-01-30 12:18:38 +01:00
|
|
|
|
2003-12-21 21:52:13 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
### DEVELOPMENT / PERL MODULES
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2005-10-26 23:10:31 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
boehmgc = (import ../development/libraries/boehm-gc) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-10-26 23:10:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gmime = import ../development/libraries/gmime {
|
|
|
|
inherit fetchurl stdenv pkgconfig zlib;
|
|
|
|
inherit (gtkLibs) glib;
|
2005-03-07 14:27:28 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
id3lib = import ../development/libraries/id3lib {
|
|
|
|
inherit fetchurl stdenv;
|
2005-03-07 14:27:28 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lesstif = (import ../development/libraries/lesstif) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXp libXau;
|
2005-03-07 14:27:28 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libmpcdec = import ../development/libraries/libmpcdec {
|
|
|
|
inherit fetchurl stdenv;
|
2005-03-07 14:27:28 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlArchiveZip = import ../development/perl-modules/Archive-Zip {
|
|
|
|
inherit fetchurl perl;
|
2005-01-22 01:19:27 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlBerkeleyDB = import ../development/perl-modules/BerkeleyDB {
|
|
|
|
inherit fetchurl perl db4;
|
2005-01-22 01:19:27 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlCGISession = import ../development/perl-modules/generic perl {
|
|
|
|
name = "CGI-Session-3.95";
|
2005-03-07 14:27:28 +01:00
|
|
|
src = fetchurl {
|
2006-09-15 17:28:53 +02:00
|
|
|
url = http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/CGI-Session-3.95.tar.gz;
|
|
|
|
md5 = "fe9e46496c7c711c54ca13209ded500b";
|
2005-03-07 14:27:28 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlCompressZlib = import ../development/perl-modules/Compress-Zlib {
|
|
|
|
inherit fetchurl perl;
|
2005-01-22 01:19:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
perlDateManip = import ../development/perl-modules/generic perl {
|
|
|
|
name = "DateManip-5.42a";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/DateManip-5.42a.tar.gz;
|
2005-01-22 01:19:27 +01:00
|
|
|
md5 = "648386bbf46d021ae283811f75b07bdf";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlDigestSHA1 = import ../development/perl-modules/generic perl {
|
|
|
|
name = "Digest-SHA1-2.11";
|
2005-01-22 01:19:27 +01:00
|
|
|
src = fetchurl {
|
2006-09-15 17:28:53 +02:00
|
|
|
url = http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.11.tar.gz;
|
|
|
|
md5 = "2449bfe21d6589c96eebf94dae24df6b";
|
2005-01-22 01:19:27 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLParser = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Parser-3.45";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Parser-3.45.tar.gz;
|
2005-01-22 01:19:27 +01:00
|
|
|
md5 = "c2ac1379ac5848dd32e24347cd679391";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlHTMLTagset = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Tagset-3.04";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Tagset-3.04.tar.gz;
|
2005-01-22 01:19:27 +01:00
|
|
|
md5 = "b82e0f08c1ececefe98b891f30dd56a6";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlHTMLTree = import ../development/perl-modules/generic perl {
|
|
|
|
name = "HTML-Tree-3.18";
|
2005-01-22 01:19:27 +01:00
|
|
|
src = fetchurl {
|
2006-09-15 17:28:53 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/HTML-Tree-3.18.tar.gz;
|
|
|
|
md5 = "6a9e4e565648c9772e7d8ec6d4392497";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlLocaleGettext = import ../development/perl-modules/generic perl {
|
|
|
|
name = "LocaleGettext-1.04";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gettext-1.04.tar.gz;
|
|
|
|
md5 = "578dd0c76f8673943be043435b0fbde4";
|
2005-01-22 01:19:27 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
perlLWP = import ../development/perl-modules/generic perl {
|
|
|
|
name = "libwww-perl-5.803";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/libwww-perl-5.803.tar.gz;
|
2005-01-22 01:19:27 +01:00
|
|
|
md5 = "3345d5f15a4f42350847254141725c8f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlURI perlHTMLParser];
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlTermReadKey = import ../development/perl-modules/generic perl {
|
|
|
|
name = "TermReadKey-2.30";
|
2005-05-18 23:15:29 +02:00
|
|
|
src = fetchurl {
|
2006-09-15 17:28:53 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/TermReadKey-2.30.tar.gz;
|
|
|
|
md5 = "f0ef2cea8acfbcc58d865c05b0c7e1ff";
|
2005-05-18 23:15:29 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlURI = import ../development/perl-modules/generic perl {
|
|
|
|
name = "URI-1.35";
|
2006-02-17 13:03:04 +01:00
|
|
|
src = fetchurl {
|
2006-09-15 17:28:53 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/URI-1.35.tar.gz;
|
|
|
|
md5 = "1a933b1114c41a25587ee59ba8376f7c";
|
2006-02-17 13:03:04 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlXMLLibXML = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-LibXML-1.58";
|
2006-02-17 13:03:04 +01:00
|
|
|
src = fetchurl {
|
2006-09-15 17:28:53 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-LibXML-1.58.tar.gz;
|
|
|
|
md5 = "4691fc436e5c0f22787f5b4a54fc56b0";
|
2006-02-17 13:03:04 +01:00
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
buildInputs = [libxml2];
|
|
|
|
propagatedBuildInputs = [perlXMLLibXMLCommon perlXMLSAX];
|
2006-02-17 13:03:04 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
perlXMLLibXMLCommon = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-LibXML-Common-0.13";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-LibXML-Common-0.13.tar.gz;
|
|
|
|
md5 = "13b6d93f53375d15fd11922216249659";
|
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLNamespaceSupport = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-NamespaceSupport-1.08";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-NamespaceSupport-1.08.tar.gz;
|
|
|
|
md5 = "81bd5ae772906d0579c10061ed735dc8";
|
|
|
|
};
|
|
|
|
buildInputs = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLParser = import ../development/perl-modules/XML-Parser {
|
|
|
|
inherit fetchurl perl expat;
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLSAX = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-SAX-0.12";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-SAX-0.12.tar.gz;
|
|
|
|
md5 = "bff58bd077a9693fc8cf32e2b95f571f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLNamespaceSupport];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLSimple = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Simple-2.14";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Simple-2.14.tar.gz;
|
|
|
|
md5 = "f321058271815de28d214c8efb9091f9";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLTwig = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Twig-3.15";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Twig-3.15.tar.gz;
|
|
|
|
md5 = "b26886b8bd19761fff37b23e4964b499";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
|
|
|
|
|
|
|
perlXMLWriter = import ../development/perl-modules/generic perl {
|
|
|
|
name = "XML-Writer-0.520";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/XML-Writer-0.520.tar.gz;
|
|
|
|
md5 = "0a194acc70c906c0be32f4b2b7a9f689";
|
|
|
|
};
|
2004-09-22 12:18:02 +02:00
|
|
|
};
|
|
|
|
|
2005-04-22 20:26:04 +02:00
|
|
|
pygtk = (import ../development/python-modules/pygtk) {
|
|
|
|
inherit fetchurl stdenv python pkgconfig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
readline = readline5;
|
|
|
|
|
2005-10-02 16:54:58 +02:00
|
|
|
readline4 = (import ../development/libraries/readline/readline4.nix) {
|
2004-08-05 15:49:26 +02:00
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2005-10-02 16:54:58 +02:00
|
|
|
readline5 = (import ../development/libraries/readline/readline5.nix) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
SDL = (import ../development/libraries/SDL) {
|
2006-09-12 01:06:26 +02:00
|
|
|
inherit fetchurl stdenv x11 mesa alsaLib;
|
|
|
|
inherit (xlibs) libXrandr;
|
2006-01-26 15:01:08 +01:00
|
|
|
openglSupport = true;
|
2006-09-12 01:06:26 +02:00
|
|
|
alsaSupport = true;
|
2004-09-26 20:12:51 +02:00
|
|
|
};
|
|
|
|
|
2006-09-12 02:15:05 +02:00
|
|
|
SDL_mixer = (import ../development/libraries/SDL_mixer) {
|
2006-09-12 17:23:28 +02:00
|
|
|
inherit fetchurl stdenv SDL libogg libvorbis;
|
2006-09-12 02:15:05 +02:00
|
|
|
};
|
|
|
|
|
2005-12-03 00:21:40 +01:00
|
|
|
t1lib = (import ../development/libraries/t1lib) {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXaw;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
taglib = import ../development/libraries/taglib {
|
|
|
|
inherit fetchurl stdenv zlib;
|
2006-07-22 13:22:41 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
tk = import ../development/libraries/tk {
|
|
|
|
inherit fetchurl stdenv tcl x11;
|
2006-02-02 15:12:31 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wxPython = (import ../development/python-modules/wxPython-2.5) {
|
|
|
|
inherit fetchurl stdenv pkgconfig wxGTK python;
|
2006-02-02 16:04:04 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wxPython24 = (import ../development/python-modules/wxPython) {
|
|
|
|
inherit fetchurl stdenv pkgconfig python;
|
|
|
|
wxGTK = wxGTK24;
|
2006-02-02 16:04:04 +01:00
|
|
|
};
|
|
|
|
|
2006-05-07 23:58:31 +02:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
### SERVERS
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
apacheHttpd = (import ../servers/http/apache-httpd) {
|
2006-02-28 13:01:39 +01:00
|
|
|
inherit fetchurl stdenv perl openssl db4 expat zlib;
|
2003-11-05 13:17:48 +01:00
|
|
|
sslSupport = true;
|
|
|
|
db4Support = true;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
jetty = (import ../servers/http/jetty) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2006-01-15 13:03:00 +01:00
|
|
|
mod_python = import ../servers/http/apache-modules/mod_python {
|
|
|
|
inherit fetchurl stdenv apacheHttpd python;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mysql = import ../servers/sql/mysql {
|
|
|
|
inherit fetchurl stdenv ncurses zlib perl;
|
|
|
|
ps = procps; /* !!! Linux only */
|
2004-08-24 13:38:40 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mysql_jdbc = import ../servers/sql/mysql/jdbc {
|
2005-05-24 17:32:57 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ant = apacheAntBlackdown14;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
postgresql = (import ../servers/sql/postgresql) {
|
|
|
|
inherit fetchurl stdenv readline ncurses zlib;
|
2005-01-21 19:24:25 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
postgresql_jdbc = (import ../servers/sql/postgresql/jdbc) {
|
2006-03-29 19:07:20 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ant = apacheAntBlackdown14;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xorg = recurseIntoAttrs (import ../servers/x11/xorg {
|
|
|
|
inherit fetchurl stdenv pkgconfig freetype fontconfig
|
|
|
|
expat libdrm libpng zlib perl mesa;
|
|
|
|
});
|
|
|
|
|
2004-08-30 20:22:14 +02:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
### OS-SPECIFIC
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
#nfsUtils = (import ../os-specific/linux/nfs-utils) {
|
|
|
|
# inherit fetchurl stdenv;
|
|
|
|
#};
|
|
|
|
|
|
|
|
alsaLib = (import ../os-specific/linux/alsa/library) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-12-31 15:35:49 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
alsaUtils = (import ../os-specific/linux/alsa/utils) {
|
|
|
|
inherit fetchurl stdenv alsaLib ncurses gettext;
|
2005-11-29 02:43:11 +01:00
|
|
|
};
|
|
|
|
|
2005-12-31 17:30:47 +01:00
|
|
|
#uclibcSparc = (import ../development/uclibc) {
|
2006-03-06 17:13:54 +01:00
|
|
|
# inherit fetchurl stdenv mktemp;
|
2005-12-31 17:30:47 +01:00
|
|
|
# kernelHeadersCross = kernelHeadersSparc;
|
|
|
|
# binutilsCross = binutilsSparc;
|
|
|
|
# gccCross = gcc40sparc;
|
|
|
|
# cross = "sparc-linux";
|
|
|
|
#};
|
|
|
|
|
2005-08-28 01:05:50 +02:00
|
|
|
dietlibc = (import ../os-specific/linux/dietlibc) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2005-12-31 04:46:20 +01:00
|
|
|
#dietlibcArm = (import ../os-specific/linux/dietlibc-cross) {
|
|
|
|
# inherit fetchurl stdenv;
|
|
|
|
# gccCross = gcc40arm;
|
|
|
|
# binutilsCross = binutilsArm;
|
|
|
|
# arch = "arm";
|
|
|
|
#};
|
|
|
|
|
2005-08-28 02:19:42 +02:00
|
|
|
dietlibcWrapper = (import ../os-specific/linux/dietlibc-wrapper) {
|
|
|
|
inherit stdenv dietlibc;
|
|
|
|
gcc = stdenv.gcc;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
e2fsprogs = (import ../os-specific/linux/e2fsprogs) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
2006-08-27 21:59:45 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
e2fsprogsDiet = (import ../os-specific/linux/e2fsprogs-diet) {
|
|
|
|
inherit fetchurl gettext;
|
|
|
|
stdenv = overrideGCC stdenv dietgcc;
|
2006-08-27 21:59:45 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
eject = (import ../os-specific/linux/eject) {
|
|
|
|
inherit fetchurl stdenv gettext;
|
2006-08-06 22:40:41 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
fuse = import ../os-specific/linux/fuse {
|
|
|
|
inherit fetchurl stdenv;
|
2006-08-06 22:40:41 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
hotplug = import ../os-specific/linux/hotplug {
|
|
|
|
inherit fetchurl stdenv bash gnused coreutils utillinux gnugrep module_init_tools;
|
2006-08-27 21:59:45 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
hwdata = (import ../os-specific/linux/hwdata) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-09-01 18:38:31 +02:00
|
|
|
};
|
|
|
|
|
2005-12-12 18:07:34 +01:00
|
|
|
initscripts = (import ../os-specific/linux/initscripts) {
|
|
|
|
inherit fetchurl stdenv popt pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
iputils = (import ../os-specific/linux/iputils) {
|
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
|
|
|
glibc = stdenv.gcc.glibc;
|
|
|
|
};
|
|
|
|
|
|
|
|
kernel = (import ../os-specific/linux/kernel) {
|
|
|
|
inherit fetchurl perl mktemp;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2005-08-24 19:13:24 +02:00
|
|
|
};
|
|
|
|
|
2006-09-19 00:09:47 +02:00
|
|
|
kernel_2_6_17 = (import ../os-specific/linux/kernel/linux-2.6.17.nix) {
|
|
|
|
inherit fetchurl stdenv perl mktemp;
|
|
|
|
};
|
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2003-11-02 23:25:26 +01:00
|
|
|
|
2005-12-31 15:35:49 +01: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 02:43:11 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-12-31 15:35:49 +01:00
|
|
|
cross = "mips-linux";
|
2005-11-29 02:43:11 +01:00
|
|
|
};
|
|
|
|
|
2005-12-31 17:30:47 +01:00
|
|
|
kernelHeadersSparc = (import ../os-specific/linux/kernel-headers-cross) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
cross = "sparc-linux";
|
|
|
|
};
|
|
|
|
|
2006-07-22 13:22:41 +02:00
|
|
|
kernelscripts = (import ../os-specific/linux/kernelscripts) {
|
2006-07-30 20:33:25 +02:00
|
|
|
inherit stdenv module_init_tools kernel;
|
|
|
|
modules = [ov511];
|
2006-07-22 13:22:41 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libselinux = (import ../os-specific/linux/libselinux) {
|
|
|
|
inherit fetchurl stdenv libsepol;
|
2005-06-23 16:02:19 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
libsepol = (import ../os-specific/linux/libsepol) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-08-27 19:58:49 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
MAKEDEV = (import ../os-specific/linux/MAKEDEV) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-01-03 16:49:54 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
MAKEDEVwrapper = (import ../os-specific/linux/MAKEDEV-wrapper) {
|
|
|
|
inherit stdenv MAKEDEV;
|
2005-10-24 18:07:50 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
#klibc = (import ../os-specific/linux/klibc) {
|
|
|
|
# inherit fetchurl stdenv kernel perl bison flexWrapper;
|
2005-08-27 22:48:05 +02:00
|
|
|
#};
|
2005-08-24 19:13:24 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mingetty = (import ../os-specific/linux/mingetty) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-11 16:57:15 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mingettyWrapper = (import ../os-specific/linux/mingetty-wrapper) {
|
|
|
|
inherit stdenv mingetty shadowutils;
|
2005-08-29 17:56:55 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mkinitrd = (import ../os-specific/linux/mkinitrd) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2006-09-15 17:28:53 +02:00
|
|
|
popt = popt110;
|
2004-02-16 11:40:45 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
module_init_tools = (import ../os-specific/linux/module-init-tools) {
|
2005-12-28 13:11:19 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
module_init_toolsStatic = (import ../os-specific/linux/module-init-tools-static) {
|
2005-10-05 16:16:58 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
modutils = (import ../os-specific/linux/modutils) {
|
|
|
|
inherit fetchurl stdenv bison flex;
|
|
|
|
};
|
|
|
|
|
|
|
|
nettools = (import ../os-specific/linux/net-tools) {
|
2004-09-18 19:23:18 +02:00
|
|
|
inherit fetchurl stdenv;
|
2004-02-16 15:09:55 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ov511 = (import ../os-specific/linux/ov511) {
|
|
|
|
inherit fetchurl kernel;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2004-02-16 15:31:52 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
pam = (import ../os-specific/linux/pam) {
|
|
|
|
inherit stdenv fetchurl cracklib;
|
2005-08-28 02:19:42 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
procps = import ../os-specific/linux/procps {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
|
|
|
shadowutils = (import ../os-specific/linux/shadow) {
|
2004-02-19 13:46:35 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
squashfsTools = import ../os-specific/linux/squashfs {
|
|
|
|
inherit fetchurl stdenv zlib;
|
2004-12-16 17:34:03 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sysklogd = (import ../os-specific/linux/sysklogd) {
|
2005-08-20 23:49:31 +02:00
|
|
|
inherit fetchurl stdenv;
|
2005-12-28 13:11:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
syslinux = import ../os-specific/linux/syslinux {
|
|
|
|
inherit fetchurl stdenv nasm perl;
|
2005-08-20 23:49:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sysvinit = (import ../os-specific/linux/sysvinit) {
|
2004-08-30 13:44:51 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
uclibcArm = (import ../development/uclibc) {
|
|
|
|
inherit fetchurl stdenv mktemp;
|
|
|
|
kernelHeadersCross = kernelHeadersArm;
|
|
|
|
binutilsCross = binutilsArm;
|
|
|
|
gccCross = gcc40arm;
|
|
|
|
cross = "arm-linux";
|
2005-07-25 18:58:01 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
uclibcMips = (import ../development/uclibc) {
|
|
|
|
inherit fetchurl stdenv mktemp;
|
|
|
|
kernelHeadersCross = kernelHeadersMips;
|
|
|
|
binutilsCross = binutilsMips;
|
|
|
|
gccCross = gcc40mipsboot;
|
|
|
|
cross = "mips-linux";
|
2005-08-19 16:11:05 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
udev = import ../os-specific/linux/udev {
|
|
|
|
inherit fetchurl stdenv;
|
2006-09-08 17:19:43 +02:00
|
|
|
};
|
|
|
|
|
2006-01-07 18:25:39 +01:00
|
|
|
usbutils = import ../os-specific/linux/usbutils {
|
|
|
|
inherit fetchurl stdenv libusb;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
utillinux = (import ../os-specific/linux/util-linux) {
|
2005-08-19 16:11:05 +02:00
|
|
|
inherit fetchurl stdenv;
|
2005-08-17 19:37:55 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
utillinuxStatic = (import ../os-specific/linux/util-linux-static) {
|
2005-11-01 12:34:47 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-01-28 02:13:31 +01:00
|
|
|
xorg_sys_opengl = import ../os-specific/linux/opengl/xorg-sys {
|
|
|
|
inherit stdenv xlibs expat;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
### DATA
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
docbook5 = (import ../data/sgml+xml/schemas/docbook-5.0) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2004-04-08 16:06:15 +02:00
|
|
|
docbook_xml_dtd_42 = (import ../data/sgml+xml/schemas/xml-dtd/docbook-4.2) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
docbook_xml_dtd_43 = (import ../data/sgml+xml/schemas/xml-dtd/docbook-4.3) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv unzip;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
2004-04-08 13:49:27 +02:00
|
|
|
docbook_xml_ebnf_dtd = (import ../data/sgml+xml/schemas/xml-dtd/docbook-ebnf) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2003-11-25 19:02:05 +01:00
|
|
|
docbook_xml_xslt = (import ../data/sgml+xml/stylesheets/xslt/docbook) {
|
2004-02-02 22:40:18 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-25 19:02:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
### APPLICATIONS
|
2003-11-03 19:21:30 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2006-07-08 14:44:39 +02:00
|
|
|
abiword = (import ../applications/office/abiword) {
|
|
|
|
inherit fetchurl stdenv pkgconfig fribidi libpng popt;
|
|
|
|
inherit (gtkLibs) glib gtk pango;
|
|
|
|
inherit (gnome) libglade libgnomeprint libgnomeprintui libgnomecanvas;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
acroread = (import ../applications/misc/acrobat-reader) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
inherit (xlibs) libXt libXp libXext libX11 libXinerama;
|
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
|
|
|
xineramaSupport = true;
|
|
|
|
fastStart = true;
|
2005-10-26 23:10:31 +02:00
|
|
|
};
|
2005-10-24 17:15:34 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
amsn = (import ../applications/networking/instant-messengers/amsn) {
|
|
|
|
inherit fetchurl stdenv which tcl tk x11;
|
|
|
|
};
|
2005-12-20 01:48:38 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
batik = (import ../applications/graphics/batik) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
2005-10-13 14:32:16 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
bmp = import ../applications/audio/bmp {
|
|
|
|
inherit fetchurl stdenv pkgconfig libogg libvorbis alsaLib id3lib;
|
|
|
|
inherit (gnome) esound libglade;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
2006-09-11 11:47:58 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
bmp_plugin_musepack = import ../applications/audio/bmp-plugins/musepack {
|
|
|
|
inherit fetchurl stdenv pkgconfig bmp libmpcdec taglib;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
2005-04-29 16:32:31 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
|
|
|
|
inherit fetchurl stdenv;
|
2006-07-12 15:41:02 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
cdrtools = (import ../applications/misc/cdrtools) {
|
|
|
|
inherit fetchurl stdenv;
|
2004-08-23 21:23:03 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
chatzilla =
|
|
|
|
xulrunnerWrapper {
|
|
|
|
launcher = "chatzilla";
|
|
|
|
application = (import ../applications/networking/irc/chatzilla) {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
cua = (import ../applications/editors/emacs/modes/cua) {
|
2004-11-28 18:28:55 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
#rpm = (import ../applications/package-management/rpm) {
|
|
|
|
# inherit fetchurl stdenv python tcl readline file cpio beecrypt unzip neon gnupg libxml2 perl;
|
|
|
|
#};
|
|
|
|
|
|
|
|
cvs = (import ../applications/version-management/cvs) {
|
|
|
|
inherit fetchurl stdenv vim;
|
|
|
|
};
|
|
|
|
|
2005-10-04 16:25:13 +02:00
|
|
|
darcs = import ../applications/version-management/darcs {
|
2006-01-30 12:18:38 +01:00
|
|
|
inherit fetchurl stdenv ghc zlib ncurses curl;
|
2005-10-04 16:25:13 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
eclipse = plugins :
|
|
|
|
(import ../applications/editors/eclipse) {
|
|
|
|
inherit fetchurl stdenv makeWrapper jdk;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (xlibs) libXtst;
|
|
|
|
inherit plugins;
|
|
|
|
};
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
eclipseSpoofax =
|
|
|
|
eclipse [spoofax];
|
|
|
|
|
|
|
|
emacs = (import ../applications/editors/emacs) {
|
|
|
|
inherit fetchurl stdenv x11 Xaw3d;
|
|
|
|
inherit (xlibs) libXaw libXpm;
|
|
|
|
xaw3dSupport = true;
|
2005-05-26 22:09:29 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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-08-30 09:39:38 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
emacs22aa = (import ../applications/editors/emacs-22-aa) {
|
|
|
|
inherit fetchurl stdenv pkgconfig x11 Xaw3d libpng;
|
|
|
|
inherit (xlibs) libXaw libXpm libXft;
|
2005-10-22 13:51:30 +02:00
|
|
|
inherit (gtkLibs) gtk;
|
2006-09-15 17:28:53 +02:00
|
|
|
xaw3dSupport = false;
|
|
|
|
gtkGUI = true;
|
|
|
|
xftSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
ethereal = (import ../applications/networking/sniffers/ethereal) {
|
|
|
|
inherit fetchurl stdenv perl pkgconfig libpcap;
|
|
|
|
inherit (gtkLibs) glib;
|
2005-10-22 13:51:30 +02:00
|
|
|
};
|
|
|
|
|
2005-11-30 06:49:28 +01:00
|
|
|
firefox = (import ../applications/networking/browsers/firefox) {
|
2006-02-16 09:46:28 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo;
|
2005-09-18 01:58:51 +02:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
2006-02-15 18:04:11 +01:00
|
|
|
#enableOfficialBranding = true;
|
2005-09-18 01:58:51 +02:00
|
|
|
};
|
|
|
|
|
2006-10-04 15:59:41 +02:00
|
|
|
firefox20 = (import ../applications/networking/browsers/firefox-2.0) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
#enableOfficialBranding = true;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
firefoxWrapper = wrapFirefox firefox;
|
2006-02-15 03:53:01 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
flac = (import ../applications/audio/flac) {
|
|
|
|
inherit fetchurl stdenv libogg;
|
2004-10-17 15:56:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
flashplayer = (import ../applications/networking/browsers/mozilla-plugins/flashplayer) {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
inherit (xlibs) libXmu;
|
2004-10-17 15:28:28 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
fspot = (import ../applications/graphics/f-spot) {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
|
|
|
|
libexif libjpeg sqlite lcms libgphoto2 monoDLLFixer;
|
|
|
|
inherit (gnome) libgnome libgnomeui;
|
|
|
|
gtksharp = gtksharp1;
|
2006-03-02 20:08:26 +01:00
|
|
|
};
|
2004-09-15 13:06:15 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gaim = (import ../applications/networking/instant-messengers/gaim) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl libxml2 openssl nss;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
2004-07-26 12:33:58 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gimp = (import ../applications/graphics/gimp) {
|
|
|
|
inherit fetchurl stdenv pkgconfig freetype fontconfig
|
|
|
|
libtiff libjpeg libpng libexif zlib perl perlXMLParser python pygtk gettext;
|
|
|
|
inherit (gnome) gtk libgtkhtml glib pango atk libart_lgpl;
|
2005-12-26 17:13:04 +01:00
|
|
|
};
|
|
|
|
|
2006-09-24 14:23:13 +02:00
|
|
|
gnash = (import ../applications/video/gnash) {
|
|
|
|
inherit fetchurl stdenv SDL SDL_mixer GStreamer
|
|
|
|
libogg libxml2 libjpeg mesa libpng;
|
|
|
|
inherit (xlibs) libX11 libXext libXi libXmu;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gphoto2 = (import ../applications/misc/gphoto2) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libgphoto2 libexif popt;
|
2005-09-14 18:23:02 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
gqview = (import ../applications/graphics/gqview) {
|
|
|
|
inherit fetchurl stdenv pkgconfig libpng;
|
|
|
|
inherit (gtkLibs) gtk;
|
2006-02-10 13:15:04 +01:00
|
|
|
};
|
|
|
|
|
2006-09-24 14:23:13 +02:00
|
|
|
GStreamer = (import ../applications/audio/GStreamer) {
|
|
|
|
inherit fetchurl stdenv perl bison flex pkgconfig libxml2;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
haskellMode = (import ../applications/editors/emacs/modes/haskell) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-11-03 21:00:43 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
hello = (import ../applications/misc/hello/ex-1) {
|
|
|
|
inherit fetchurl stdenv perl;
|
2005-02-27 00:45:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
inkscape = (import ../applications/graphics/inkscape) {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig zlib
|
|
|
|
popt libxml2 libxslt libpng boehmgc fontconfig gtkmm
|
|
|
|
glibmm libsigcxx;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (xlibs) libXft;
|
2006-07-22 13:43:46 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
kuickshow = (import ../applications/graphics/kuickshow) {
|
|
|
|
inherit fetchurl stdenv kdelibs arts libpng libjpeg libtiff libungif imlib expat perl;
|
|
|
|
inherit (xlibs) libX11 libXext libSM;
|
|
|
|
qt = qt3;
|
2005-11-22 13:05:36 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lame = (import ../applications/audio/lame) {
|
|
|
|
inherit fetchurl stdenv ;
|
2005-11-22 23:39:09 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
links = (import ../applications/networking/browsers/links) {
|
2005-01-19 22:04:43 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-01-19 22:48:45 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
lynx = (import ../applications/networking/browsers/lynx) {
|
|
|
|
inherit fetchurl stdenv ncurses openssl;
|
2005-01-19 23:12:34 +01:00
|
|
|
};
|
2005-01-19 22:04:43 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
monodevelop = (import ../applications/editors/monodevelop) {
|
|
|
|
inherit fetchurl stdenv file mono gtksourceviewsharp
|
|
|
|
gtkmozembedsharp monodoc perl perlXMLParser pkgconfig;
|
|
|
|
inherit (gnome) gnomevfs libbonobo libglade libgnome GConf glib gtk;
|
|
|
|
mozilla = firefox;
|
|
|
|
gtksharp = gtksharp2;
|
2005-10-21 12:39:01 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
monodoc = (import ../applications/editors/monodoc) {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig;
|
|
|
|
gtksharp = gtksharp1;
|
2006-02-02 15:12:31 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mozilla = (import ../applications/networking/browsers/mozilla) {
|
|
|
|
inherit fetchurl pkgconfig stdenv perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
2006-02-02 16:04:04 +01:00
|
|
|
};
|
|
|
|
|
2003-11-11 16:01:07 +01:00
|
|
|
MPlayer = (import ../applications/video/MPlayer) {
|
2005-08-24 17:02:30 +02:00
|
|
|
inherit fetchurl stdenv freetype x11 zlib libtheora libcaca;
|
2006-04-18 20:46:36 +02:00
|
|
|
inherit (xlibs) libXv libXinerama libXrandr;
|
2003-11-11 16:57:15 +01:00
|
|
|
alsaSupport = true;
|
|
|
|
alsa = alsaLib;
|
2005-02-16 17:18:43 +01:00
|
|
|
theoraSupport = true;
|
2005-08-24 17:02:30 +02:00
|
|
|
cacaSupport = true;
|
2005-10-29 21:07:27 +02:00
|
|
|
xineramaSupport = true;
|
2006-04-18 20:46:36 +02:00
|
|
|
randrSupport = true;
|
2003-11-11 16:01:07 +01:00
|
|
|
};
|
|
|
|
|
2004-10-17 15:56:56 +02:00
|
|
|
MPlayerPlugin = (import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in) {
|
2004-10-17 15:13:24 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig firefox;
|
|
|
|
inherit (xlibs) libXpm;
|
2005-05-18 23:15:29 +02:00
|
|
|
# !!! should depend on MPlayer
|
2003-11-13 14:11:38 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
mythtv = (import ../applications/video/mythtv) {
|
|
|
|
inherit fetchurl stdenv which qt3 x11 lame zlib mesa;
|
|
|
|
inherit (xlibs) libX11 libXinerama libXv libXxf86vm libXrandr libXmu;
|
2004-12-11 00:16:23 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
nano = (import ../applications/editors/nano) {
|
|
|
|
inherit fetchurl stdenv ncurses gettext;
|
2006-01-20 12:30:24 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
nanoDiet = (import ../applications/editors/nano) {
|
|
|
|
inherit fetchurl gettext;
|
|
|
|
ncurses = ncursesDiet;
|
|
|
|
stdenv = overrideGCC stdenv dietgcc;
|
2005-03-12 13:53:03 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
nedit = import ../applications/editors/nedit {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXpm;
|
|
|
|
motif = lesstif;
|
2004-01-21 10:34:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
nxml = (import ../applications/editors/emacs/modes/nxml) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-01-19 23:51:27 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
openoffice = (import ../applications/office/openoffice) {
|
|
|
|
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;
|
2004-04-05 15:34:13 +02:00
|
|
|
inherit (gtkLibs) gtk;
|
2006-09-15 17:28:53 +02:00
|
|
|
|
2006-10-02 18:18:04 +02:00
|
|
|
bison = bison23;
|
2006-09-15 17:28:53 +02:00
|
|
|
|
|
|
|
neon = (import ../development/libraries/neon/neon-0.24.7.nix) {
|
|
|
|
inherit fetchurl stdenv libxml2;
|
|
|
|
};
|
2003-11-11 17:13:13 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
opera = import ../applications/networking/browsers/opera {
|
|
|
|
inherit fetchurl stdenv zlib;
|
2006-09-29 11:06:56 +02:00
|
|
|
inherit (xlibs) libX11 libSM libICE libXt libXext;
|
2006-08-13 11:46:54 +02:00
|
|
|
qt = qt3;
|
2006-09-29 11:06:56 +02:00
|
|
|
#motif = lesstif;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
2006-08-13 11:46:54 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
pan = (import ../applications/networking/newsreaders/pan) {
|
|
|
|
inherit fetchurl stdenv pkgconfig gnet perl
|
|
|
|
pcre gmime gettext;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
spellChecking = false;
|
2005-09-07 16:57:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
pinfo = (import ../applications/misc/pinfo) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
2005-09-07 16:57:30 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
rcs = (import ../applications/version-management/rcs) {
|
|
|
|
inherit fetchurl stdenv;
|
2005-03-11 11:46:20 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
RealPlayer = import ../applications/video/RealPlayer {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
2005-09-12 00:39:06 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
rsync = (import ../applications/networking/sync/rsync) {
|
2005-08-30 21:41:10 +02:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
spoofax = (import ../applications/editors/eclipse/plugins/spoofax) {
|
|
|
|
inherit fetchurl stdenv;
|
2003-11-27 13:09:22 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
subversion = subversion14;
|
2005-11-13 16:03:49 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
subversion13 = (import ../applications/version-management/subversion-1.3.x) {
|
|
|
|
inherit fetchurl stdenv openssl db4 expat swig zlib;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
2006-01-31 15:22:08 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
subversion14 = (import ../applications/version-management/subversion-1.4.x) {
|
|
|
|
inherit fetchurl stdenv apr aprutil neon expat swig zlib;
|
|
|
|
bdbSupport = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
2004-04-06 19:47:34 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
subversionWithJava = (import ../applications/version-management/subversion-1.2.x) {
|
|
|
|
inherit fetchurl stdenv openssl db4 expat jdk;
|
|
|
|
swig = swigWithJava;
|
|
|
|
localServer = true;
|
|
|
|
httpServer = false;
|
|
|
|
sslSupport = true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
javahlBindings = true;
|
2005-11-27 22:06:08 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
sylpheed = (import ../applications/networking/mailreaders/sylpheed) {
|
|
|
|
inherit fetchurl stdenv pkgconfig openssl gpgme;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
sslSupport = true;
|
|
|
|
gpgSupport = true;
|
2006-01-26 21:45:11 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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-25 22:27:40 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
valknut = (import ../applications/networking/p2p/valknut) {
|
|
|
|
inherit fetchurl stdenv perl x11 libxml2 libjpeg libpng openssl dclib;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
2006-02-24 22:42:57 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
vim = (import ../applications/editors/vim) {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2005-11-08 00:02:17 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
vimDiet = (import ../applications/editors/vim-diet) {
|
|
|
|
inherit fetchurl;
|
|
|
|
ncurses = ncursesDiet;
|
|
|
|
stdenv = overrideGCC stdenv dietgcc;
|
2004-10-13 16:21:20 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
vlc = (import ../applications/video/vlc) {
|
|
|
|
inherit fetchurl stdenv perl x11 wxGTK
|
|
|
|
zlib mpeg2dec a52dec libmad ffmpeg
|
|
|
|
libdvdread libdvdnav libdvdcss;
|
|
|
|
inherit (xlibs) libXv;
|
|
|
|
alsa = alsaLib;
|
2005-02-27 00:45:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
w3m = (import ../applications/networking/browsers/w3m) {
|
|
|
|
inherit fetchurl stdenv ncurses openssl boehmgc gettext zlib;
|
|
|
|
graphicsSupport = false;
|
|
|
|
inherit (gtkLibs1x) gdkpixbuf;
|
2005-02-27 00:45:19 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
wrapFirefox = firefox: (import ../applications/networking/browsers/firefox-wrapper) {
|
|
|
|
inherit stdenv firefox;
|
|
|
|
plugins = [
|
|
|
|
MPlayerPlugin
|
|
|
|
flashplayer
|
2006-09-24 20:38:12 +02:00
|
|
|
]
|
|
|
|
# RealPlayer is disabled by default for legal reasons.
|
2006-09-24 20:59:49 +02:00
|
|
|
++ (if getConfig ["firefox" "enableRealPlayer"] false then [RealPlayer] else [])
|
2006-09-24 20:38:12 +02:00
|
|
|
++ (if blackdown != null then [blackdown] else []);
|
2004-10-06 13:32:20 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xara = (import ../applications/graphics/xara) {
|
|
|
|
inherit fetchurl stdenv autoconf automake libtool gettext cvs wxGTK
|
|
|
|
pkgconfig libxml2 zip libpng libjpeg;
|
2005-12-13 01:13:01 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02: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-12-22 11:49:43 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xchat = (import ../applications/networking/irc/xchat) {
|
|
|
|
inherit fetchurl stdenv pkgconfig tcl;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
2003-12-08 12:56:50 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xchm = (import ../applications/misc/xchm) {
|
|
|
|
inherit fetchurl stdenv wxGTK chmlib;
|
2004-10-06 14:06:23 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xineUI = (import ../applications/video/xine-ui) {
|
|
|
|
inherit fetchurl stdenv x11 xineLib libpng;
|
2004-12-06 08:36:56 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xmms = (import ../applications/audio/xmms) {
|
|
|
|
inherit fetchurl libogg libvorbis alsaLib;
|
|
|
|
inherit (gnome) esound;
|
|
|
|
inherit (gtkLibs1x) glib gtk;
|
|
|
|
stdenv = overrideGCC stdenv gcc34; # due to problems with gcc 4.x
|
2004-10-06 15:17:06 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xpdf = (import ../applications/misc/xpdf) {
|
|
|
|
inherit fetchurl stdenv x11 freetype t1lib;
|
|
|
|
motif = lesstif;
|
2006-08-30 01:40:29 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xterm = (import ../applications/misc/xterm) {
|
2004-07-30 14:57:27 +02:00
|
|
|
inherit fetchurl stdenv ncurses;
|
2006-09-15 17:28:53 +02:00
|
|
|
inherit (xlibs) libXaw xproto libXt libX11 libSM libICE;
|
2004-07-30 14:57:27 +02:00
|
|
|
};
|
2004-02-13 15:42:28 +01:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xulrunner = (import ../development/interpreters/xulrunner) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
2006-07-30 20:29:23 +02:00
|
|
|
};
|
2004-07-30 15:38:10 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
xulrunnerWrapper = {application, launcher}:
|
|
|
|
(import ../development/interpreters/xulrunner/wrapper) {
|
|
|
|
inherit stdenv xulrunner application launcher;
|
|
|
|
};
|
|
|
|
|
|
|
|
zapping = (import ../applications/video/zapping) {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl python
|
|
|
|
gettext zvbi libjpeg libpng x11
|
|
|
|
rte perlXMLParser;
|
|
|
|
inherit (gnome) scrollkeeper libgnomeui libglade esound;
|
|
|
|
inherit (xlibs) libXv libXmu libXext;
|
|
|
|
teletextSupport = true;
|
|
|
|
jpegSupport = true;
|
|
|
|
pngSupport = true;
|
|
|
|
recordingSupport = true;
|
2005-12-03 01:04:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-04-01 18:02:53 +02:00
|
|
|
### GAMES
|
|
|
|
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
exult = import ../games/exult {
|
|
|
|
inherit fetchurl SDL SDL_mixer zlib libpng unzip;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2006-08-09 01:39:03 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
quake3demo = import ../games/quake3/wrapper {
|
|
|
|
name = "quake3-demo";
|
2006-10-11 18:45:55 +02:00
|
|
|
description = "Demo of Quake 3 Arena, a classic first-person shooter";
|
2006-09-15 17:28:53 +02:00
|
|
|
inherit fetchurl stdenv mesa;
|
|
|
|
game = quake3game;
|
|
|
|
paks = [quake3demodata];
|
2006-01-26 15:43:05 +01:00
|
|
|
};
|
|
|
|
|
2006-01-28 00:51:36 +01:00
|
|
|
quake3demodata = import ../games/quake3/demo {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
quake3game = import ../games/quake3/game {
|
|
|
|
inherit fetchurl stdenv x11 SDL mesa openal;
|
|
|
|
};
|
|
|
|
|
|
|
|
scummvm = (import ../games/scummvm) {
|
|
|
|
inherit fetchurl stdenv SDL;
|
2004-06-09 20:06:29 +02:00
|
|
|
};
|
|
|
|
|
2006-01-30 12:44:39 +01:00
|
|
|
ut2004demo = import ../games/ut2004demo {
|
2004-06-09 20:06:29 +02:00
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
|
|
|
};
|
2004-06-09 19:59:46 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
zoom = (import ../games/zoom) {
|
|
|
|
inherit fetchurl stdenv perl expat freetype;
|
|
|
|
inherit (xlibs) xlibs;
|
2006-09-12 01:06:26 +02:00
|
|
|
};
|
|
|
|
|
2004-04-01 18:02:53 +02:00
|
|
|
|
2004-02-13 15:42:28 +01:00
|
|
|
### MISC
|
|
|
|
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
aangifte2005 = import ../evil/belastingdienst {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
patchelf = patchelfNew;
|
2004-02-18 17:22:31 +01:00
|
|
|
};
|
|
|
|
|
2004-11-03 22:28:03 +01:00
|
|
|
atari800 = (import ../misc/emulators/atari800) {
|
2006-08-13 00:33:51 +02:00
|
|
|
inherit fetchurl stdenv unzip zlib SDL;
|
2004-11-03 22:28:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
ataripp = (import ../misc/emulators/atari++) {
|
|
|
|
inherit fetchurl stdenv x11 SDL;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
busybox = (import ../misc/busybox) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
cups = (import ../misc/cups) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
dosbox = (import ../misc/emulators/dosbox) {
|
|
|
|
inherit fetchurl stdenv SDL;
|
|
|
|
};
|
|
|
|
|
2005-12-03 02:33:18 +01:00
|
|
|
generator = (import ../misc/emulators/generator) {
|
|
|
|
inherit fetchurl stdenv SDL nasm;
|
|
|
|
inherit (gtkLibs1x) gtk;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
ghostscript = (import ../misc/ghostscript) {
|
|
|
|
inherit fetchurl stdenv libjpeg libpng zlib x11;
|
|
|
|
x11Support = false;
|
2005-12-03 03:32:02 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
/*
|
|
|
|
toolbus = (import ../development/interpreters/toolbus) {
|
|
|
|
inherit stdenv fetchurl atermjava toolbuslib aterm yacc flex;
|
2006-03-28 12:38:21 +02:00
|
|
|
};
|
2006-09-15 17:28:53 +02:00
|
|
|
*/
|
2006-03-28 12:38:21 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
joe = (import ../applications/editors/joe) {
|
|
|
|
inherit stdenv fetchurl;
|
2005-04-28 23:10:33 +02:00
|
|
|
};
|
|
|
|
|
2006-01-27 21:51:41 +01:00
|
|
|
lazylist = (import ../misc/tex/lazylist) {
|
|
|
|
inherit fetchurl stdenv tetex;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
linuxwacom = (import ../misc/linuxwacom) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXi;
|
2006-01-27 21:51:41 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
martyr = (import ../development/libraries/martyr) {
|
|
|
|
inherit stdenv fetchurl apacheAnt;
|
|
|
|
};
|
|
|
|
|
|
|
|
maven = (import ../misc/maven/maven-1.0.nix) {
|
|
|
|
inherit stdenv fetchurl jdk;
|
2005-04-29 15:23:15 +02:00
|
|
|
};
|
|
|
|
|
2004-02-16 16:40:55 +01:00
|
|
|
nix = (import ../misc/nix) {
|
2006-10-11 17:31:52 +02:00
|
|
|
inherit fetchurl stdenv aterm db4 perl curl bzip2;
|
2006-05-01 21:16:41 +02:00
|
|
|
};
|
|
|
|
|
2006-10-11 14:25:40 +02:00
|
|
|
nixUnstable = nix;
|
|
|
|
|
2006-10-11 17:31:52 +02:00
|
|
|
nixStatic = (import ../misc/nix-static) {
|
|
|
|
inherit fetchurl stdenv aterm perl curl autoconf automake libtool;
|
2006-08-05 13:02:17 +02:00
|
|
|
bdb = db4;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
polytable = (import ../misc/tex/polytable) {
|
|
|
|
inherit fetchurl stdenv tetex lazylist;
|
2005-10-21 15:06:43 +02:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
rssglx = (import ../misc/screensavers/rss-glx) {
|
|
|
|
inherit fetchurl stdenv x11 mesa;
|
2006-03-02 19:17:45 +01:00
|
|
|
};
|
|
|
|
|
2005-11-03 21:00:43 +01:00
|
|
|
saneBackends = (import ../misc/sane-backends) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
tetex = (import ../misc/tex/tetex) {
|
|
|
|
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
|
2006-01-31 16:18:27 +01:00
|
|
|
};
|
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
texFunctions = (import ../misc/tex/nix) {
|
|
|
|
inherit stdenv perl tetex graphviz ghostscript;
|
2006-01-28 03:10:26 +01:00
|
|
|
};
|
|
|
|
|
2006-02-02 17:31:23 +01:00
|
|
|
toolbuslib = (import ../development/libraries/toolbuslib) {
|
|
|
|
inherit stdenv fetchurl aterm;
|
|
|
|
};
|
|
|
|
|
2006-04-22 20:08:37 +02:00
|
|
|
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 14:10:20 +02:00
|
|
|
};
|
2006-04-22 20:08:37 +02:00
|
|
|
|
2006-09-15 17:28:53 +02:00
|
|
|
uml = (import ../misc/uml) {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
m4 = gnum4;
|
|
|
|
gcc = gcc33;
|
|
|
|
};
|
|
|
|
|
|
|
|
umlutilities = (import ../misc/uml-utilities) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|