2006-02-08 17:37:45 +00:00
|
|
|
/* This file composes the Nix Packages collection. That is, it
|
|
|
|
imports the functions that build the various packages, and calls
|
|
|
|
them with appropriate arguments. The result is a set of all the
|
|
|
|
packages in the Nix Packages collection for some particular
|
|
|
|
platform. */
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
|
2006-08-23 16:58:54 +01:00
|
|
|
{ # The system (e.g., `i686-linux') for which to build the packages.
|
2006-02-08 17:37:45 +00:00
|
|
|
system ? __currentSystem
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-08-23 16:58:54 +01: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 17:37:45 +00:00
|
|
|
, # The standard environment to use. Only used for bootstrapping. If
|
|
|
|
# null, the default standard environment is used.
|
|
|
|
bootStdenv ? null
|
|
|
|
|
|
|
|
# More flags for the bootstrapping of stdenv.
|
|
|
|
, noSysDirs ? true
|
2004-09-18 18:23:18 +01:00
|
|
|
, gccWithCC ? true
|
|
|
|
, gccWithProfiling ? true
|
2004-03-11 17:26:14 +00:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
}:
|
2003-11-03 10:22:00 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
|
2008-08-26 16:35:00 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
lib = import ../lib;
|
|
|
|
|
|
|
|
# The contents of the configuration file found at $NIXPKGS_CONFIG or
|
|
|
|
# $HOME/.nixpkgs/config.nix.
|
|
|
|
config =
|
|
|
|
let {
|
|
|
|
toPath = builtins.toPath;
|
|
|
|
getEnv = x: if builtins ? getEnv then builtins.getEnv x else "";
|
|
|
|
pathExists = name:
|
|
|
|
builtins ? pathExists && builtins.pathExists (toPath name);
|
|
|
|
|
|
|
|
configFile = getEnv "NIXPKGS_CONFIG";
|
|
|
|
homeDir = getEnv "HOME";
|
|
|
|
configFile2 = homeDir + "/.nixpkgs/config.nix";
|
|
|
|
|
|
|
|
body =
|
|
|
|
if configFile != "" && pathExists configFile
|
|
|
|
then import (toPath configFile)
|
|
|
|
else if homeDir != "" && pathExists configFile2
|
|
|
|
then import (toPath configFile2)
|
|
|
|
else {};
|
|
|
|
};
|
|
|
|
|
|
|
|
# Return an attribute from the Nixpkgs configuration file, or
|
|
|
|
# a default value if the attribute doesn't exist.
|
|
|
|
getConfig = attrPath: default: lib.getAttr attrPath default config;
|
|
|
|
|
|
|
|
|
|
|
|
# Allow packages to be overriden globally via the `packageOverrides'
|
|
|
|
# configuration option, which must be a function that takes `pkgs'
|
|
|
|
# as an argument and returns a set of new or overriden packages.
|
|
|
|
# `__overrides' is a magic attribute that causes the attributes in
|
2008-08-26 17:50:33 +01:00
|
|
|
# its value to be added to the surrounding `rec'. The
|
|
|
|
# `packageOverrides' function is called with the *original*
|
|
|
|
# (un-overriden) set of packages, allowing packageOverrides
|
|
|
|
# attributes to refer to the original attributes (e.g. "foo =
|
|
|
|
# ... pkgs.foo ...").
|
|
|
|
__overrides = (getConfig ["packageOverrides"] (pkgs: {})) pkgsOrig;
|
|
|
|
|
|
|
|
pkgsOrig = pkgsFun {}; # the un-overriden packages, passed to packageOverrides
|
|
|
|
pkgsOverriden = pkgsFun __overrides; # the overriden, final packages
|
|
|
|
pkgs = pkgsOverriden;
|
2008-10-09 11:10:49 +01:00
|
|
|
|
2008-08-26 16:35:00 +01:00
|
|
|
|
|
|
|
# The package compositions. Yes, this isn't properly indented.
|
2008-08-26 17:50:33 +01:00
|
|
|
pkgsFun = __overrides: rec {
|
2008-08-26 16:35:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
inherit __overrides;
|
|
|
|
|
|
|
|
|
|
|
|
# For convenience, allow callers to get the path to Nixpkgs.
|
|
|
|
path = ./..;
|
2003-11-25 18:02:05 +00:00
|
|
|
|
2008-10-09 11:10:49 +01:00
|
|
|
|
2004-03-27 21:59:31 +00:00
|
|
|
### Symbolic names.
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
|
|
|
|
x11 = xlibsWrapper;
|
|
|
|
|
2005-11-12 17:05:51 +00:00
|
|
|
# `xlibs' is the set of X library components. This used to be the
|
|
|
|
# old modular X libraries project (called `xlibs') but now it's just
|
|
|
|
# the set of packages in the modular X.org tree (which also includes
|
|
|
|
# non-library components like the server, drivers, fonts, etc.).
|
2006-07-17 13:46:39 +01:00
|
|
|
xlibs = xorg // {xlibs = xlibsWrapper;};
|
2005-11-12 17:05:51 +00:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
### Helper functions.
|
|
|
|
|
2006-03-23 16:47:34 +00:00
|
|
|
|
2008-08-26 16:35:00 +01:00
|
|
|
inherit lib config getConfig;
|
2008-10-09 11:10:49 +01:00
|
|
|
|
2006-06-23 21:11:36 +01:00
|
|
|
# Override the compiler in stdenv for specific packages.
|
|
|
|
overrideGCC = stdenv: gcc: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args // { NIX_GCC = gcc; });
|
|
|
|
};
|
|
|
|
|
|
|
|
# Add some arbitrary packages to buildInputs for specific packages.
|
|
|
|
# Used to override packages in stenv like Make. Should not be used
|
|
|
|
# for other dependencies.
|
|
|
|
overrideInStdenv = stdenv: pkgs: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args //
|
|
|
|
{ buildInputs = (if args ? buildInputs then args.buildInputs else []) ++ pkgs; }
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2006-10-18 13:50:04 +01:00
|
|
|
addAttrsToDerivation = extraAttrs: stdenv: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args // extraAttrs); };
|
|
|
|
|
2006-08-07 14:31:18 +01:00
|
|
|
# Override the setup script of stdenv. Useful for testing new
|
|
|
|
# versions of the setup script without causing a rebuild of
|
|
|
|
# everything.
|
|
|
|
#
|
|
|
|
# Example:
|
2006-10-18 11:32:45 +01:00
|
|
|
# randomPkg = import ../bla { ...
|
2006-08-07 14:31:18 +01:00
|
|
|
# stdenv = overrideSetup stdenv ../stdenv/generic/setup-latest.sh;
|
|
|
|
# };
|
|
|
|
overrideSetup = stdenv: setup: stdenv.regenerate setup;
|
|
|
|
|
2008-08-27 15:48:28 +01:00
|
|
|
stdenvNew = overrideSetup stdenv ../stdenv/generic/setup-new.sh;
|
|
|
|
|
2006-10-18 13:50:04 +01:00
|
|
|
# Return a modified stdenv that uses dietlibc to create small
|
|
|
|
# statically linked binaries.
|
|
|
|
useDietLibC = stdenv: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args // {
|
|
|
|
NIX_CFLAGS_LINK = "-static";
|
2006-10-19 12:03:20 +01:00
|
|
|
|
|
|
|
# libcompat.a contains some commonly used functions.
|
|
|
|
NIX_LDFLAGS = "-lcompat";
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-10-18 13:50:04 +01:00
|
|
|
# These are added *after* the command-line flags, so we'll
|
|
|
|
# always optimise for size.
|
2006-10-18 16:16:53 +01:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
(if args ? NIX_CFLAGS_COMPILE then args.NIX_CFLAGS_COMPILE else "")
|
2006-10-18 17:16:07 +01:00
|
|
|
+ " -Os -s -D_BSD_SOURCE=1";
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-10-18 13:50:04 +01:00
|
|
|
configureFlags =
|
|
|
|
(if args ? configureFlags then args.configureFlags else "")
|
|
|
|
+ " --disable-shared"; # brrr...
|
|
|
|
|
|
|
|
NIX_GCC = import ../build-support/gcc-wrapper {
|
2006-10-23 18:43:55 +01:00
|
|
|
inherit stdenv;
|
2006-10-24 19:26:23 +01:00
|
|
|
libc = dietlibc;
|
2006-10-23 18:43:55 +01:00
|
|
|
inherit (gcc) gcc binutils name nativeTools nativePrefix;
|
2006-10-24 19:26:23 +01:00
|
|
|
nativeLibc = false;
|
2006-10-18 13:50:04 +01:00
|
|
|
};
|
|
|
|
});
|
2006-10-18 16:16:53 +01:00
|
|
|
isDietLibC = true;
|
2008-06-06 09:01:26 +01:00
|
|
|
} // {inherit fetchurl;};
|
2006-10-18 13:50:04 +01:00
|
|
|
|
2008-08-08 20:05:32 +01:00
|
|
|
# Return a modified stdenv that uses klibc to create small
|
|
|
|
# statically linked binaries.
|
|
|
|
useKlibc = stdenv: klibc: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args // {
|
|
|
|
NIX_CFLAGS_LINK = "-static";
|
|
|
|
|
|
|
|
# These are added *after* the command-line flags, so we'll
|
|
|
|
# always optimise for size.
|
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
(if args ? NIX_CFLAGS_COMPILE then args.NIX_CFLAGS_COMPILE else "")
|
|
|
|
+ " -Os -s";
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
(if args ? configureFlags then args.configureFlags else "")
|
|
|
|
+ " --disable-shared"; # brrr...
|
|
|
|
|
|
|
|
NIX_GCC = runCommand "klibc-wrapper" {} ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
ln -s ${klibc}/bin/klcc $out/bin/gcc
|
|
|
|
ln -s ${klibc}/bin/klcc $out/bin/cc
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo 'PATH=$PATH:${stdenv.gcc.binutils}/bin' > $out/nix-support/setup-hook
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
isKlibc = true;
|
|
|
|
isStatic = true;
|
|
|
|
} // {inherit fetchurl;};
|
|
|
|
|
2006-10-20 12:49:47 +01:00
|
|
|
# Return a modified stdenv that tries to build statically linked
|
|
|
|
# binaries.
|
|
|
|
makeStaticBinaries = stdenv: stdenv //
|
|
|
|
{ mkDerivation = args: stdenv.mkDerivation (args // {
|
|
|
|
NIX_CFLAGS_LINK = "-static";
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
(if args ? configureFlags then args.configureFlags else "")
|
|
|
|
+ " --disable-shared"; # brrr...
|
|
|
|
});
|
2008-06-06 08:50:52 +01:00
|
|
|
isStatic = true;
|
2008-06-06 09:01:26 +01:00
|
|
|
} // {inherit fetchurl;};
|
2006-10-20 12:49:47 +01:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
# Applying this to an attribute set will cause nix-env to look
|
|
|
|
# inside the set for derivations.
|
|
|
|
recurseIntoAttrs = attrs: attrs // {recurseForDerivations = true;};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
useFromStdenv = it : alternative : if (builtins.hasAttr it stdenv) then
|
|
|
|
(builtins.getAttr it stdenv) else alternative;
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
# Return the first available value in the order: pkg.val, val, or default.
|
|
|
|
getPkgConfig = pkg : val : default : (getConfig [ pkg val ] (getConfig [ val ] default));
|
|
|
|
|
2007-09-01 19:26:13 +01:00
|
|
|
# Return user-choosen version of given package. If you define package as
|
|
|
|
#
|
|
|
|
# pkgname_alts =
|
|
|
|
# {
|
|
|
|
# v_0_1 = ();
|
|
|
|
# v_0_2 = ();
|
|
|
|
# default = v_0_1;
|
|
|
|
# recurseForDerivations = true;
|
|
|
|
# };
|
|
|
|
# pkgname = getVersion "name" pkgname_alts;
|
|
|
|
#
|
|
|
|
# user will be able to write in his configuration.nix something like
|
2008-01-28 19:29:28 +00:00
|
|
|
# name = { version = "0.2"; }; and pkgname will be equal
|
|
|
|
# to getAttr pkgname_alts "0.2". Using alts.default by default.
|
2007-09-01 19:26:13 +01:00
|
|
|
getVersion = name: alts: builtins.getAttr
|
2008-01-28 19:29:28 +00:00
|
|
|
(getConfig [ name "version" ] "default") alts;
|
2007-09-01 19:26:13 +01:00
|
|
|
|
2007-11-14 21:57:26 +00:00
|
|
|
# The same, another syntax.
|
|
|
|
# Warning: syntax for configuration.nix changed too
|
2008-01-29 13:24:40 +00:00
|
|
|
useVersion = name: f: f {
|
|
|
|
version = getConfig [ "environment" "versions" name ];
|
2007-11-14 21:57:26 +00:00
|
|
|
};
|
|
|
|
|
2007-04-26 14:02:30 +01:00
|
|
|
# Change the symbolic name of a package for presentation purposes
|
|
|
|
# (i.e., so that nix-env users can tell them apart).
|
|
|
|
setName = name: drv: drv // {inherit name;};
|
|
|
|
|
|
|
|
updateName = updater: drv: drv // {name = updater (drv.name);};
|
|
|
|
|
|
|
|
# !!! the suffix should really be appended *before* the version, at
|
|
|
|
# least most of the time.
|
|
|
|
appendToName = suffix: updateName (name: "${name}-${suffix}");
|
2007-05-01 21:35:58 +01:00
|
|
|
|
|
|
|
# Decrease the priority of the package, i.e., other
|
|
|
|
# versions/variants will be preferred.
|
|
|
|
lowPrio = drv: drv // {
|
|
|
|
meta = (if drv ? meta then drv.meta else {}) // {priority = "10";};
|
|
|
|
};
|
2007-05-16 15:34:27 +01:00
|
|
|
|
2008-03-11 08:11:06 +00:00
|
|
|
# documentation see examples in lib at end of file or read some use cases
|
|
|
|
# within this file
|
|
|
|
# Before spending much time on investigating how this works just ask me
|
|
|
|
# - Marc Weber (#irc or marco-oweber@gmx.de)
|
2008-06-18 23:48:34 +01:00
|
|
|
mkDerivationByConfiguration =
|
2007-11-23 16:58:42 +00:00
|
|
|
assert builtins ? isAttrs;
|
|
|
|
{ flagConfig ? {}, optionals ? [], defaults ? []
|
|
|
|
, extraAttrs, collectExtraPhaseActions ? []
|
|
|
|
}:
|
2007-11-05 21:30:59 +00:00
|
|
|
args: with args.lib; with args;
|
2007-11-23 16:58:42 +00:00
|
|
|
if ( builtins.isAttrs extraAttrs ) then builtins.throw "the argument extraAttrs needs to be a function beeing passed co, but attribute set passed "
|
2007-09-09 19:14:19 +01:00
|
|
|
else
|
2008-01-16 03:29:56 +00:00
|
|
|
let co = lib.chooseOptionsByFlags { inherit args flagConfig optionals defaults collectExtraPhaseActions; }; in
|
2008-06-18 23:48:34 +01:00
|
|
|
args.stdenv.mkDerivation (
|
2007-09-09 19:14:19 +01:00
|
|
|
{
|
2008-03-06 02:46:29 +00:00
|
|
|
inherit (co) configureFlags buildInputs propagatedBuildInputs /*flags*/;
|
2007-11-05 21:30:59 +00:00
|
|
|
} // extraAttrs co // co.pass // co.flags_prefixed );
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-02-09 17:04:18 +00:00
|
|
|
|
2007-09-25 20:03:07 +01:00
|
|
|
# Check absence of non-used options
|
2008-06-18 23:48:34 +01:00
|
|
|
checker = x: flag: opts: config:
|
|
|
|
(if flag then let result=(
|
|
|
|
(import ../build-support/checker)
|
2008-03-17 09:41:28 +00:00
|
|
|
opts config); in
|
|
|
|
(if (result=="") then x else
|
|
|
|
abort ("Unknown option specified: " + result))
|
|
|
|
else x);
|
|
|
|
|
2008-08-19 06:54:09 +01:00
|
|
|
builderDefs = composedArgsAndFun (import ./builder-defs.nix) {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit stringsWithDeps lib stdenv writeScript fetchurl;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
composedArgsAndFun = lib.composedArgsAndFun;
|
2008-05-07 08:23:20 +01:00
|
|
|
|
2008-08-19 06:54:09 +01:00
|
|
|
builderDefsPackage = builderDefs.builderDefsPackage builderDefs;
|
2008-03-20 15:40:26 +00:00
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
stringsWithDeps = import ../lib/strings-with-deps.nix {
|
|
|
|
inherit stdenv lib;
|
|
|
|
};
|
2007-10-29 10:52:04 +00:00
|
|
|
|
2007-11-26 13:24:56 +00:00
|
|
|
# Call a specific version of a Nix expression, that is,
|
|
|
|
# `selectVersion ./foo {version = "0.1.2"; args...}' evaluates to
|
|
|
|
# `import ./foo/0.1.2.nix args'.
|
2008-01-31 17:32:28 +00:00
|
|
|
selectVersion = dir: defVersion: args:
|
|
|
|
let
|
|
|
|
pVersion =
|
|
|
|
if (args ? version && args.version != "") then
|
|
|
|
args.version
|
|
|
|
else
|
|
|
|
getConfig [ (baseNameOf (toString dir)) "version" ] defVersion;
|
|
|
|
in
|
|
|
|
import (dir + "/${pVersion}.nix") (args // { version = pVersion; });
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-08-26 17:50:33 +01:00
|
|
|
makeOverridable = f: origArgs: f origArgs //
|
|
|
|
{ function = newArgsFun: makeOverridable f (origArgs // (newArgsFun origArgs));
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-10-09 11:10:49 +01:00
|
|
|
|
2006-02-08 17:37:45 +00:00
|
|
|
### STANDARD ENVIRONMENT
|
|
|
|
|
|
|
|
|
2008-06-18 16:09:13 +01:00
|
|
|
allStdenvs = import ../stdenv {
|
|
|
|
inherit system stdenvType;
|
|
|
|
allPackages = import ./all-packages.nix;
|
|
|
|
};
|
|
|
|
|
|
|
|
defaultStdenv = allStdenvs.stdenv;
|
2006-02-08 17:37:45 +00:00
|
|
|
|
2007-08-20 15:26:32 +01:00
|
|
|
stdenv =
|
|
|
|
if bootStdenv != null then bootStdenv else
|
|
|
|
let changer = getConfig ["replaceStdenv"] null;
|
|
|
|
in if changer != null then
|
|
|
|
changer {
|
|
|
|
stdenv = defaultStdenv;
|
|
|
|
overrideSetup = overrideSetup;
|
|
|
|
}
|
|
|
|
else defaultStdenv;
|
2004-03-27 21:59:31 +00:00
|
|
|
|
2008-06-29 17:13:02 +01:00
|
|
|
# A stdenv capable of building 32-bit binaries. On x86_64-linux,
|
|
|
|
# it uses GCC compiled with multilib support; on i686-linux, it's
|
|
|
|
# just the plain stdenv.
|
|
|
|
stdenv_32bit =
|
|
|
|
if system == "x86_64-linux" then
|
|
|
|
overrideGCC stdenv gcc43multi
|
|
|
|
else
|
|
|
|
stdenv;
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
### BUILD SUPPORT
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2003-11-25 18:02:05 +00:00
|
|
|
|
2006-11-28 16:46:12 +00:00
|
|
|
buildEnv = import ../build-support/buildenv {
|
|
|
|
inherit stdenv perl;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-03-02 18:41:32 +00:00
|
|
|
debPackage = {
|
2008-08-14 23:04:30 +01:00
|
|
|
debBuild = lib.sumTwoArgs(import ../build-support/deb-package) {
|
2008-03-02 18:41:32 +00:00
|
|
|
inherit builderDefs;
|
|
|
|
};
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-09-26 09:57:51 +01:00
|
|
|
fetchbzr = import ../build-support/fetchbzr {
|
|
|
|
inherit stdenv bazaar;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
fetchcvs = import ../build-support/fetchcvs {
|
2008-02-28 22:36:37 +00:00
|
|
|
inherit stdenv cvs;
|
2006-05-11 13:36:16 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
fetchdarcs = import ../build-support/fetchdarcs {
|
2006-01-30 11:18:38 +00:00
|
|
|
inherit stdenv darcs nix;
|
|
|
|
};
|
|
|
|
|
2008-03-06 02:46:29 +00:00
|
|
|
# only temporarely / don't know yet wether it's save to switch
|
|
|
|
# but I have trouble getting HAppS repos
|
2008-04-14 20:59:26 +01:00
|
|
|
fetchdarcs2 = import ../build-support/fetchdarcs {
|
2008-03-06 02:46:29 +00:00
|
|
|
inherit stdenv nix;
|
2008-04-14 20:59:26 +01:00
|
|
|
darcs = darcs2;
|
2008-03-06 02:46:29 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
fetchsvn = import ../build-support/fetchsvn {
|
2008-02-29 10:30:29 +00:00
|
|
|
inherit stdenv subversion openssh;
|
2006-09-15 16:28:53 +01:00
|
|
|
sshSupport = true;
|
|
|
|
};
|
|
|
|
|
2008-04-02 14:28:55 +01:00
|
|
|
fetchsvnssh = import ../build-support/fetchsvnssh {
|
|
|
|
inherit stdenv subversion openssh expect;
|
|
|
|
sshSupport = true;
|
|
|
|
};
|
|
|
|
|
2007-09-03 13:10:57 +01:00
|
|
|
# TODO do some testing
|
|
|
|
fetchhg = import ../build-support/fetchhg {
|
|
|
|
inherit stdenv mercurial nix;
|
|
|
|
};
|
|
|
|
|
2008-05-27 08:49:55 +01:00
|
|
|
# `fetchurl' downloads a file from the network. The `useFromStdenv'
|
|
|
|
# is there to allow stdenv to determine fetchurl. Used during the
|
|
|
|
# stdenv-linux bootstrap phases to prevent lots of different curls
|
|
|
|
# from being built.
|
2008-02-03 13:19:16 +00:00
|
|
|
fetchurl = useFromStdenv "fetchurl"
|
2006-09-15 16:28:53 +01:00
|
|
|
(import ../build-support/fetchurl {
|
|
|
|
inherit stdenv curl;
|
|
|
|
});
|
2005-04-22 13:14:55 +01:00
|
|
|
|
2008-05-27 08:49:55 +01:00
|
|
|
# fetchurlBoot is used for curl and its dependencies in order to
|
|
|
|
# prevent a cyclic dependency (curl depends on curl.tar.bz2,
|
|
|
|
# curl.tar.bz2 depends on fetchurl, fetchurl depends on curl). It
|
|
|
|
# uses the curl from the previous bootstrap phase (e.g. a statically
|
|
|
|
# linked curl in the case of stdenv-linux).
|
|
|
|
fetchurlBoot = stdenv.fetchurlBoot;
|
|
|
|
|
2008-07-23 17:04:10 +01:00
|
|
|
resolveMirrorURLs = {url}: fetchurl {
|
|
|
|
showURLs = true;
|
|
|
|
inherit url;
|
|
|
|
};
|
|
|
|
|
2008-03-17 10:40:47 +00:00
|
|
|
makeInitrd = {contents}: import ../build-support/kernel/make-initrd.nix {
|
|
|
|
inherit stdenv perl cpio contents;
|
|
|
|
};
|
|
|
|
|
2008-01-18 10:29:58 +00:00
|
|
|
makeSetupHook = script: runCommand "hook" {} ''
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
cp ${script} $out/nix-support/setup-hook
|
|
|
|
'';
|
|
|
|
|
2008-01-18 11:28:41 +00:00
|
|
|
makeWrapper = makeSetupHook ../build-support/make-wrapper/make-wrapper.sh;
|
2008-01-18 10:29:58 +00:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
makeModulesClosure = {kernel, rootModules, allowMissing ? false}:
|
2008-03-24 19:40:15 +00:00
|
|
|
import ../build-support/kernel/modules-closure.nix {
|
|
|
|
inherit stdenv module_init_tools kernel rootModules allowMissing;
|
|
|
|
};
|
2008-03-17 10:40:47 +00:00
|
|
|
|
2006-12-13 14:23:24 +00:00
|
|
|
# Run the shell command `buildCommand' to produce a store object
|
|
|
|
# named `name'. The attributes in `env' are added to the
|
|
|
|
# environment prior to running the command.
|
2006-12-27 18:14:57 +00:00
|
|
|
runCommand = name: env: buildCommand: stdenv.mkDerivation ({
|
2006-12-10 22:24:42 +00:00
|
|
|
inherit name buildCommand;
|
|
|
|
} // env);
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2008-10-26 17:44:44 +00:00
|
|
|
symlinkJoin = name: paths: runCommand name {inherit paths;} "mkdir -p $out; for i in $paths; do ${xorg.lndir}/bin/lndir $i $out; done";
|
2006-12-13 14:23:24 +00:00
|
|
|
|
2008-10-30 13:08:01 +00:00
|
|
|
# Create a single file.
|
|
|
|
writeTextFile =
|
|
|
|
{ name # the name of the derivation
|
|
|
|
, text
|
|
|
|
, executable ? false # run chmod +x ?
|
|
|
|
, destination ? "" # relative path appended to $out eg "/bin/foo"
|
|
|
|
}:
|
2008-10-26 17:44:44 +00:00
|
|
|
runCommand name {inherit text executable; } ''
|
|
|
|
n=$out${destination}
|
|
|
|
mkdir -p "$(dirname "$n")"
|
|
|
|
echo -n "$text" > "$n"
|
2008-10-31 12:24:28 +00:00
|
|
|
(test -n "$executable" && chmod +x "$n") || true
|
2008-10-30 13:08:01 +00:00
|
|
|
'';
|
2008-11-13 19:35:48 +00:00
|
|
|
|
2008-10-30 13:08:01 +00:00
|
|
|
# Shorthands for `writeTextFile'.
|
|
|
|
writeText = name: text: writeTextFile {inherit name text;};
|
|
|
|
writeScript = name: text: writeTextFile {inherit name text; executable = true;};
|
|
|
|
writeScriptBin = name: text: writeTextFile {inherit name text; executable = true; destination = "/bin/${name}";};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-08-16 19:48:50 +01:00
|
|
|
# entries is a list of attribute sets like { name = "name" ; path = "/nix/store/..."; }
|
|
|
|
linkFarm = name: entries: runCommand name {} ("mkdir -p $out; cd $out; \n" +
|
|
|
|
(lib.concatMapStrings (x: "ln -s '${x.path}' '${x.name}';\n") entries));
|
|
|
|
|
2008-10-01 16:57:22 +01:00
|
|
|
srcOnly = args: (import ../build-support/src-only) ({inherit stdenv; } // args);
|
|
|
|
|
2006-12-10 22:24:42 +00:00
|
|
|
substituteAll = import ../build-support/substitute/substitute-all.nix {
|
2007-11-17 14:34:34 +00:00
|
|
|
inherit stdenv;
|
2006-11-02 22:44:32 +00:00
|
|
|
};
|
|
|
|
|
2006-11-03 13:33:24 +00:00
|
|
|
nukeReferences = import ../build-support/nuke-references/default.nix {
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
2008-03-17 17:29:07 +00:00
|
|
|
|
|
|
|
vmTools = import ../build-support/vm/default.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-11-24 15:10:06 +00:00
|
|
|
releaseTools = import ../build-support/release/default.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
|
2008-12-02 12:26:53 +00:00
|
|
|
# see new python derivations for example..
|
|
|
|
# You should be able to override anything you like easily
|
|
|
|
composableDerivation = {
|
|
|
|
# modify args before applying stdenv.mkDerivation, this should remove at least attrs removeAttrsBy
|
|
|
|
f ? lib.prepareDerivationArgs,
|
|
|
|
stdenv ? pkgs.stdenv,
|
|
|
|
# initial set of arguments to be passed to stdenv.mkDerivation passing prepareDerivationArgs by default
|
|
|
|
initial ? {},
|
|
|
|
# example func : (x: x // { x.buildInputs ++ ["foo"] }), but see mergeAttrByFunc which does this for you
|
|
|
|
merge ? (lib.mergeOrApply lib.mergeAttrByFunc)
|
|
|
|
}: lib.applyAndFun
|
|
|
|
(args: stdenv.mkDerivation (f args))
|
|
|
|
merge
|
|
|
|
(merge { inherit (lib) mergeAttrBy; } initial);
|
2006-11-03 13:33:24 +00:00
|
|
|
|
2008-12-15 23:52:25 +00:00
|
|
|
# Write the references (i.e. the runtime dependencies in the Nix store) of `path' to a file.
|
|
|
|
writeReferencesToFile = path: runCommand "runtime-deps"
|
|
|
|
{
|
|
|
|
exportReferencesGraph = ["graph" path];
|
|
|
|
}
|
|
|
|
''
|
|
|
|
touch $out
|
|
|
|
while read path; do
|
|
|
|
echo $path >> $out
|
|
|
|
read dummy
|
|
|
|
read nrRefs
|
|
|
|
for ((i = 0; i < nrRefs; i++)); do read ref; done
|
|
|
|
done < graph
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
### TOOLS
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-04-08 00:38:01 +01:00
|
|
|
aefs = import ../tools/security/aefs {
|
|
|
|
inherit fetchurl stdenv fuse;
|
|
|
|
};
|
|
|
|
|
2007-10-06 16:59:35 +01:00
|
|
|
amule = import ../tools/networking/p2p/amule {
|
2008-10-07 22:50:24 +01:00
|
|
|
inherit fetchurl stdenv zlib perl cryptopp gettext libupnp makeWrapper;
|
2008-07-29 17:52:26 +01:00
|
|
|
wxGTK = wxGTK28;
|
2007-10-06 16:59:35 +01:00
|
|
|
};
|
|
|
|
|
2008-06-21 21:53:52 +01:00
|
|
|
aria = builderDefsPackage (import ../tools/networking/aria) {
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-21 21:53:52 +01:00
|
|
|
|
2008-04-01 10:08:17 +01:00
|
|
|
at = import ../tools/system/at {
|
|
|
|
inherit fetchurl stdenv bison flex pam ssmtp;
|
|
|
|
};
|
|
|
|
|
2008-03-06 16:42:34 +00:00
|
|
|
avahi =
|
|
|
|
let qt4Support = getConfig [ "avahi" "qt4Support" ] false;
|
|
|
|
in
|
2008-12-12 23:02:11 +00:00
|
|
|
import ../development/libraries/avahi {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit stdenv fetchurl pkgconfig libdaemon dbus perl perlXMLParser
|
2008-12-12 23:02:11 +00:00
|
|
|
expat gettext intltool lib;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
inherit qt4Support;
|
|
|
|
qt4 = if qt4Support then qt4 else null;
|
2008-03-06 16:42:34 +00:00
|
|
|
};
|
2008-02-06 19:36:12 +00:00
|
|
|
|
2007-08-16 20:50:59 +01:00
|
|
|
axel = import ../tools/networking/axel {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
azureus = import ../tools/networking/p2p/azureus {
|
|
|
|
inherit fetchurl stdenv jdk swt;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
bc = import ../tools/misc/bc {
|
2005-10-10 01:55:07 +01:00
|
|
|
inherit fetchurl stdenv flex;
|
|
|
|
};
|
|
|
|
|
2008-07-11 21:27:53 +01:00
|
|
|
bfr = import ../tools/misc/bfr {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
|
|
|
|
2008-03-10 15:57:14 +00:00
|
|
|
asciidoc = import ../tools/typesetting/asciidoc {
|
2008-03-11 14:06:52 +00:00
|
|
|
inherit fetchurl stdenv bash python;
|
2008-03-10 15:57:14 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
bibtextools = import ../tools/typesetting/bibtex-tools {
|
|
|
|
inherit fetchurl stdenv aterm tetex hevea sdf strategoxt;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
bittorrent = import ../tools/networking/p2p/bittorrent {
|
2007-05-31 14:43:13 +01:00
|
|
|
inherit fetchurl stdenv makeWrapper python pycrypto twisted;
|
|
|
|
wxPython = wxPython26;
|
2006-12-13 20:30:09 +00:00
|
|
|
gui = true;
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
|
|
|
|
2007-06-20 00:38:01 +01:00
|
|
|
bittornado = import ../tools/networking/p2p/bit-tornado {
|
|
|
|
inherit fetchurl stdenv python wxPython26;
|
|
|
|
};
|
|
|
|
|
2008-12-04 21:01:26 +00:00
|
|
|
bmrsa = builderDefsPackage (selectVersion ../tools/security/bmrsa "11") {
|
|
|
|
inherit unzip;
|
2008-03-03 12:30:39 +00:00
|
|
|
};
|
|
|
|
|
2008-03-02 18:35:04 +00:00
|
|
|
bogofilter = import ../tools/misc/bogofilter {
|
|
|
|
inherit fetchurl stdenv flex;
|
|
|
|
bdb = db4;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
bsdiff = import ../tools/compression/bsdiff {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
bzip2 = useFromStdenv "bzip2"
|
2006-09-15 16:28:53 +01:00
|
|
|
(import ../tools/compression/bzip2 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
|
|
|
cabextract = import ../tools/archivers/cabextract {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-07-25 14:04:51 +01:00
|
|
|
cdrdao = import ../tools/cd-dvd/cdrdao {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
cdrkit = import ../tools/cd-dvd/cdrkit {
|
|
|
|
inherit fetchurl stdenv cmake libcap zlib bzip2;
|
|
|
|
};
|
|
|
|
|
2008-11-25 02:20:41 +00:00
|
|
|
checkinstall = import ../tools/package-management/checkinstall {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
|
|
|
|
2008-06-12 11:07:54 +01:00
|
|
|
cheetahTemplate = builderDefsPackage (selectVersion ../tools/text/cheetah-template "2.0.1") {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit makeWrapper python;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-12 11:07:54 +01:00
|
|
|
|
2008-01-14 14:43:24 +00:00
|
|
|
chkrootkit = import ../tools/security/chkrootkit {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
cksfv = import ../tools/networking/cksfv {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-25 14:25:07 +01:00
|
|
|
convertlit = import ../tools/text/convertlit {
|
2008-08-27 15:56:59 +01:00
|
|
|
inherit fetchurl unzip libtommath;
|
|
|
|
stdenv = stdenvNew;
|
|
|
|
};
|
2008-08-12 20:57:35 +01:00
|
|
|
|
2008-08-29 14:53:28 +01:00
|
|
|
unifdef = import ../development/tools/misc/unifdef {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
coreutils = useFromStdenv "coreutils"
|
2006-10-27 21:08:53 +01:00
|
|
|
((if stdenv ? isDietLibC
|
|
|
|
then import ../tools/misc/coreutils-5
|
|
|
|
else import ../tools/misc/coreutils)
|
|
|
|
{
|
2008-05-19 16:12:03 +01:00
|
|
|
inherit fetchurl stdenv acl;
|
|
|
|
aclSupport = stdenv.isLinux;
|
2006-03-08 15:00:18 +00:00
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
cpio = import ../tools/archivers/cpio {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2008-11-04 21:40:39 +00:00
|
|
|
cron = import ../tools/system/cron { # see also fcron
|
2008-08-27 16:22:33 +01:00
|
|
|
inherit fetchurl;
|
|
|
|
stdenv = stdenvNew;
|
2007-01-10 15:44:58 +00:00
|
|
|
};
|
|
|
|
|
2008-05-27 08:49:55 +01:00
|
|
|
curl = import ../tools/networking/curl {
|
|
|
|
fetchurl = fetchurlBoot;
|
|
|
|
inherit stdenv zlib openssl;
|
2008-06-06 08:50:52 +01:00
|
|
|
zlibSupport = ! ((stdenv ? isDietLibC) || (stdenv ? isStatic));
|
|
|
|
sslSupport = ! ((stdenv ? isDietLibC) || (stdenv ? isStatic));
|
2008-05-27 08:49:55 +01:00
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-10-25 15:07:50 +01:00
|
|
|
curlftpfs = import ../tools/networking/curlftpfs {
|
|
|
|
inherit fetchurl stdenv fuse curl pkgconfig zlib;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ddrescue = builderDefsPackage (selectVersion ../tools/system/ddrescue "1.8") {};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-09-03 13:10:57 +01:00
|
|
|
dnsmasq = import ../tools/networking/dnsmasq {
|
2008-06-18 23:48:34 +01:00
|
|
|
# TODO i18n can be installed as well, implement it?
|
2007-09-03 13:10:57 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
dhcp = import ../tools/networking/dhcp {
|
2008-03-14 13:40:32 +00:00
|
|
|
inherit fetchurl stdenv groff nettools coreutils iputils gnused
|
|
|
|
bash makeWrapper;
|
2006-08-26 10:44:39 +01:00
|
|
|
};
|
|
|
|
|
2008-05-14 08:58:32 +01:00
|
|
|
diffstat = import ../tools/text/diffstat {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
diffutils = useFromStdenv "diffutils"
|
2006-09-15 16:28:53 +01:00
|
|
|
(import ../tools/text/diffutils {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
});
|
|
|
|
|
2008-03-11 09:34:17 +00:00
|
|
|
docbook2x = import ../tools/typesetting/docbook2x {
|
2008-03-12 15:19:54 +00:00
|
|
|
inherit fetchurl stdenv texinfo perl
|
|
|
|
perlXMLSAX perlXMLParser perlXMLNamespaceSupport
|
2008-03-11 09:34:17 +00:00
|
|
|
gnused groff libxml2 libxslt makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-11-07 12:36:06 +00:00
|
|
|
dosfstools = composedArgsAndFun (selectVersion ../tools/misc/dosfstools "3.00deb") {
|
2008-02-04 04:41:55 +00:00
|
|
|
inherit builderDefs;
|
|
|
|
};
|
|
|
|
|
2008-07-25 14:04:51 +01:00
|
|
|
dvdplusrwtools = import ../tools/cd-dvd/dvd+rw-tools {
|
|
|
|
inherit fetchurl stdenv cdrkit m4;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
enscript = import ../tools/text/enscript {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-07-21 12:26:51 +01:00
|
|
|
};
|
|
|
|
|
2008-05-10 10:19:50 +01:00
|
|
|
eprover = composedArgsAndFun (import ../tools/misc/eProver) {
|
|
|
|
inherit fetchurl stdenv which;
|
|
|
|
texLive = texLiveAggregationFun {
|
|
|
|
paths = [
|
|
|
|
texLive texLiveExtra
|
|
|
|
];
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
|
|
|
};
|
2007-10-07 14:37:08 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
exif = import ../tools/graphics/exif {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libexif popt;
|
2005-08-23 15:19:16 +01:00
|
|
|
};
|
|
|
|
|
2008-02-27 15:48:53 +00:00
|
|
|
expect = import ../tools/misc/expect {
|
|
|
|
inherit fetchurl stdenv tcl;
|
|
|
|
};
|
|
|
|
|
2008-11-04 21:40:39 +00:00
|
|
|
fcron = import ../tools/system/fcron { # see also cron
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
file = import ../tools/misc/file {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2006-08-08 01:09:27 +01:00
|
|
|
};
|
|
|
|
|
2007-07-14 15:41:06 +01:00
|
|
|
filelight = import ../tools/system/filelight {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv kdelibs x11 zlib perl libpng;
|
2007-07-14 15:41:06 +01:00
|
|
|
qt = qt3;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
findutils = useFromStdenv "findutils"
|
2006-10-29 00:17:39 +01:00
|
|
|
(if system == "i686-darwin" then findutils4227 else
|
|
|
|
import ../tools/misc/findutils {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
}
|
|
|
|
);
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2006-10-27 23:50:58 +01:00
|
|
|
findutils4227 = import ../tools/misc/findutils/4.2.27.nix {
|
|
|
|
inherit fetchurl stdenv coreutils;
|
|
|
|
};
|
|
|
|
|
2007-05-01 21:35:58 +01:00
|
|
|
findutilsWrapper = lowPrio (appendToName "wrapper" (import ../tools/misc/findutils-wrapper {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv findutils;
|
2007-05-01 21:35:58 +01:00
|
|
|
}));
|
2005-07-31 21:11:36 +01:00
|
|
|
|
2008-01-28 19:51:14 +00:00
|
|
|
finger_bsd = import ../tools/networking/bsd-finger {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-01-28 19:51:14 +00:00
|
|
|
};
|
|
|
|
|
2008-03-26 12:57:30 +00:00
|
|
|
fontforge = import ../tools/misc/fontforge {
|
2007-08-21 13:31:33 +01:00
|
|
|
inherit fetchurl stdenv gettext freetype zlib
|
2008-03-02 22:02:28 +00:00
|
|
|
libungif libpng libjpeg libtiff libxml2 lib;
|
2007-08-21 13:31:33 +01:00
|
|
|
};
|
|
|
|
|
2008-03-26 12:57:30 +00:00
|
|
|
fontforgeX = import ../tools/misc/fontforge {
|
|
|
|
inherit fetchurl stdenv gettext freetype zlib
|
|
|
|
libungif libpng libjpeg libtiff libxml2 lib;
|
2008-03-02 22:02:28 +00:00
|
|
|
inherit (xlibs) libX11 xproto libXt;
|
2008-03-26 12:57:30 +00:00
|
|
|
};
|
2008-03-02 22:02:28 +00:00
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gawk = useFromStdenv "gawk"
|
2006-09-15 16:28:53 +01:00
|
|
|
(import ../tools/text/gawk {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
gdmap = composedArgsAndFun (selectVersion ../tools/system/gdmap "0.8.1") {
|
2008-06-16 14:15:55 +01:00
|
|
|
inherit stdenv fetchurl builderDefs pkgconfig libxml2 intltool
|
|
|
|
gettext;
|
2007-12-01 16:20:23 +00:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
getopt = import ../tools/misc/getopt {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-10-08 00:02:58 +01:00
|
|
|
};
|
|
|
|
|
2008-08-06 21:39:01 +01:00
|
|
|
gftp = import ../tools/networking/gftp {
|
|
|
|
inherit lib fetchurl stdenv;
|
|
|
|
inherit readline ncurses gettext openssl pkgconfig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
2008-06-22 03:07:53 +01:00
|
|
|
gifsicle = import ../tools/graphics/gifscile {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) xproto libXt libX11;
|
|
|
|
};
|
|
|
|
|
2007-05-16 15:49:28 +01:00
|
|
|
glxinfo = assert mesaSupported; import ../tools/graphics/glxinfo {
|
2007-04-18 15:21:24 +01:00
|
|
|
inherit fetchurl stdenv x11 mesa;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gnugrep = useFromStdenv "gnugrep"
|
2006-09-15 16:28:53 +01:00
|
|
|
(import ../tools/text/gnugrep {
|
|
|
|
inherit fetchurl stdenv pcre;
|
2006-03-08 15:00:18 +00:00
|
|
|
});
|
2003-11-02 18:14:24 +00:00
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gnupatch = useFromStdenv "patch" (import ../tools/text/gnupatch {
|
2004-02-13 14:42:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-04-26 14:02:30 +01:00
|
|
|
});
|
2004-02-13 14:42:28 +00:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
gnupg = import ../tools/security/gnupg {
|
|
|
|
inherit fetchurl stdenv readline;
|
2008-07-07 12:54:03 +01:00
|
|
|
ideaSupport = getPkgConfig "gnupg" "idea" false; # enable for IDEA crypto support
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
|
|
|
|
2008-01-28 19:45:57 +00:00
|
|
|
gnupg2 = import ../tools/security/gnupg2 {
|
2008-10-27 10:26:07 +00:00
|
|
|
inherit fetchurl stdenv readline libgpgerror libgcrypt libassuan pth libksba zlib;
|
|
|
|
openldap = if getPkgConfig "gnupg" "ldap" true then openldap else null;
|
|
|
|
bzip2 = if getPkgConfig "gnupg" "bzip2" true then bzip2 else null;
|
|
|
|
libusb = if getPkgConfig "gnupg" "usb" true then libusb else null;
|
|
|
|
curl = if getPkgConfig "gnupg" "curl" true then curl else null;
|
2008-01-28 19:45:57 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
gnuplot = import ../tools/graphics/gnuplot {
|
2007-09-21 21:43:43 +01:00
|
|
|
inherit fetchurl stdenv zlib gd texinfo;
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
2004-08-09 15:33:14 +01:00
|
|
|
|
2007-08-04 16:12:14 +01:00
|
|
|
gnuplotX = import ../tools/graphics/gnuplot {
|
2007-09-23 00:18:55 +01:00
|
|
|
inherit fetchurl stdenv zlib gd texinfo;
|
|
|
|
inherit (xlibs) libX11 libXt libXaw libXpm;
|
|
|
|
x11Support = true;
|
2007-08-04 16:12:14 +01:00
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gnused = useFromStdenv "gnused"
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../tools/text/gnused {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-10-20 21:05:26 +01:00
|
|
|
gnused412 = import ../tools/text/gnused/4.1.2.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gnutar = useFromStdenv "gnutar"
|
2006-10-27 23:50:58 +01:00
|
|
|
(import ../tools/archivers/gnutar {
|
2006-03-08 15:00:18 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2003-11-02 18:14:24 +00:00
|
|
|
|
2006-10-27 23:50:58 +01:00
|
|
|
gnutar151 = import ../tools/archivers/gnutar/1.15.1.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
graphviz = import ../tools/graphics/graphviz {
|
2008-07-03 15:27:19 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libpng libjpeg expat x11 yacc
|
|
|
|
libtool fontconfig gd;
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit (xlibs) libXaw;
|
2008-07-03 15:27:19 +01:00
|
|
|
inherit (gtkLibs) pango;
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
groff = import ../tools/text/groff {
|
2005-08-21 14:59:04 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-06-29 17:13:02 +01:00
|
|
|
grub = import ../tools/misc/grub {
|
|
|
|
inherit fetchurl autoconf automake;
|
|
|
|
stdenv = stdenv_32bit;
|
|
|
|
};
|
2004-06-03 18:16:16 +01:00
|
|
|
|
2008-06-18 20:40:56 +01:00
|
|
|
gssdp = import ../development/libraries/gssdp {
|
2008-06-29 17:13:02 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
inherit (gnome) libsoup;
|
|
|
|
};
|
2008-06-18 20:40:56 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
gtkgnutella = import ../tools/networking/p2p/gtk-gnutella {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
2005-06-20 21:35:07 +01:00
|
|
|
|
2008-06-18 20:40:56 +01:00
|
|
|
gupnp = import ../development/libraries/gupnp {
|
2008-06-29 17:13:02 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2 gssdp e2fsprogs;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
inherit (gnome) libsoup;
|
|
|
|
};
|
2008-06-18 20:40:56 +01:00
|
|
|
|
2008-06-18 23:34:49 +01:00
|
|
|
gupnptools = import ../tools/networking/gupnp-tools {
|
2008-06-29 17:13:02 +01:00
|
|
|
inherit fetchurl stdenv gssdp gupnp pkgconfig libxml2 e2fsprogs;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (gnome) libsoup libglade gnomeicontheme;
|
2008-06-18 23:34:49 +01:00
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gzip = useFromStdenv "gzip"
|
2006-09-15 16:28:53 +01:00
|
|
|
(import ../tools/compression/gzip {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
|
|
|
|
2008-05-11 12:18:16 +01:00
|
|
|
hddtemp = import ../tools/misc/hddtemp {
|
2007-12-10 22:36:52 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
hevea = import ../tools/typesetting/hevea {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ocaml;
|
2004-08-20 23:06:36 +01:00
|
|
|
};
|
|
|
|
|
2008-10-18 22:08:42 +01:00
|
|
|
hg2git = import ../tools/misc/hg2git {
|
|
|
|
inherit fetchurl stdenv mercurial coreutils git makeWrapper;
|
|
|
|
inherit (bleedingEdgeRepos) sourceByName;
|
|
|
|
};
|
|
|
|
|
2008-06-12 16:59:59 +01:00
|
|
|
highlight = builderDefsPackage (selectVersion ../tools/text/highlight "2.6.10") {
|
|
|
|
inherit getopt;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-12 16:59:59 +01:00
|
|
|
|
2008-11-27 13:54:49 +00:00
|
|
|
host = import ../tools/networking/host {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
|
|
|
hyppocampusFun = lib.sumArgs ( selectVersion ../tools/misc/hyppocampus "0.3rc1") {
|
2007-12-01 16:20:23 +00:00
|
|
|
inherit builderDefs stdenv fetchurl libdbi libdbiDrivers fuse
|
2008-08-25 14:25:07 +01:00
|
|
|
pkgconfig perl gettext dbus dbus_glib pcre libscd bison;
|
2007-12-01 16:20:23 +00:00
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
flex = flex2533;
|
2008-03-17 09:41:28 +00:00
|
|
|
};
|
|
|
|
*/
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2008-03-27 11:09:40 +00:00
|
|
|
idutils = import ../tools/misc/idutils {
|
|
|
|
inherit fetchurl stdenv emacs;
|
|
|
|
};
|
|
|
|
|
2008-02-21 18:58:11 +00:00
|
|
|
inetutils = import ../tools/networking/inetutils {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-05-14 09:01:03 +01:00
|
|
|
iodine = import ../tools/networking/iodine {
|
|
|
|
inherit stdenv fetchurl zlib nettools;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
jdiskreport = import ../tools/misc/jdiskreport {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv unzip jdk;
|
2005-10-26 22:10:31 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
jing = import ../tools/text/xml/jing {
|
2005-10-24 15:01:08 +01:00
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
jing_tools = import ../tools/text/xml/jing/jing-script.nix {
|
2007-03-05 15:10:05 +00:00
|
|
|
inherit fetchurl stdenv unzip jre;
|
2004-09-26 14:03:59 +01:00
|
|
|
};
|
|
|
|
|
2008-12-03 14:22:55 +00:00
|
|
|
jnettop = import ../tools/networking/jnettop {
|
|
|
|
inherit fetchurl stdenv autoconf libpcap ncurses pkgconfig;
|
|
|
|
inherit (gnome) glib;
|
|
|
|
};
|
|
|
|
|
2007-08-28 15:45:00 +01:00
|
|
|
jwhois = import ../tools/networking/jwhois {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-04-23 11:51:23 +01:00
|
|
|
keychain = import ../tools/misc/keychain {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-08-09 17:55:14 +01:00
|
|
|
ktorrent = import ../tools/networking/p2p/ktorrent {
|
|
|
|
inherit fetchurl stdenv pkgconfig kdelibs
|
|
|
|
xlibs zlib libpng libjpeg perl gmp;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
less = import ../tools/misc/less {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ncurses;
|
2006-07-04 20:17:34 +01:00
|
|
|
};
|
|
|
|
|
2007-08-04 13:41:00 +01:00
|
|
|
lftp = import ../tools/networking/lftp {
|
|
|
|
inherit fetchurl stdenv readline;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
lhs2tex = import ../tools/typesetting/lhs2tex {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ghc tetex polytable;
|
2005-08-30 14:56:15 +01:00
|
|
|
};
|
|
|
|
|
2008-02-23 12:11:27 +00:00
|
|
|
libtorrent = import ../tools/networking/p2p/libtorrent {
|
|
|
|
inherit fetchurl stdenv pkgconfig openssl libsigcxx;
|
|
|
|
};
|
|
|
|
|
2008-02-12 09:58:57 +00:00
|
|
|
lout = import ../tools/typesetting/lout {
|
2008-02-15 13:42:24 +00:00
|
|
|
inherit fetchurl stdenv ghostscript;
|
2008-02-12 09:58:57 +00:00
|
|
|
};
|
|
|
|
|
2008-02-06 13:52:41 +00:00
|
|
|
lzma = import ../tools/compression/lzma {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-12 10:51:44 +00:00
|
|
|
lsh = import ../tools/networking/lsh {
|
2008-03-05 16:49:51 +00:00
|
|
|
inherit stdenv fetchurl gperf guile gmp zlib liboop gnum4 pam;
|
2008-02-12 10:51:44 +00:00
|
|
|
};
|
|
|
|
|
2008-02-07 14:39:07 +00:00
|
|
|
man = import ../tools/misc/man {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv groff less;
|
2008-02-07 14:39:07 +00:00
|
|
|
};
|
|
|
|
|
2008-02-07 13:38:44 +00:00
|
|
|
man_db = import ../tools/misc/man-db {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv db4 groff;
|
2006-06-01 22:25:40 +01:00
|
|
|
};
|
|
|
|
|
2008-01-03 15:14:37 +00:00
|
|
|
memtest86 = import ../tools/misc/memtest86 {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-01-03 15:14:37 +00:00
|
|
|
};
|
|
|
|
|
2008-01-23 09:57:11 +00:00
|
|
|
mc = import ../tools/misc/mc {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig ncurses shebangfix perl zip;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
inherit (xlibs) libX11;
|
2008-01-23 09:57:11 +00:00
|
|
|
};
|
|
|
|
|
2008-05-11 10:45:26 +01:00
|
|
|
mdbtools = builderDefsPackage (selectVersion ../tools/misc/mdbtools "0.6-pre1") {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit readline pkgconfig bison;
|
2008-05-11 10:45:26 +01:00
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
flex = flex2535;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-11 10:45:26 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
mjpegtools = import ../tools/video/mjpegtools {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv libjpeg;
|
|
|
|
inherit (xlibs) libX11;
|
2003-11-07 11:18:47 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
mktemp = import ../tools/security/mktemp {
|
2005-03-21 14:48:48 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-04-11 14:22:35 +01:00
|
|
|
mpage = import ../tools/text/mpage {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
msf = builderDefsPackage (selectVersion ../tools/security/metasploit "3.1") {
|
2008-04-11 10:32:27 +01:00
|
|
|
inherit ruby makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-01-30 17:08:38 +00:00
|
|
|
mssys = import ../tools/misc/mssys {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
|
|
|
|
2008-05-31 23:49:00 +01:00
|
|
|
mysql2pgsql = import ../tools/misc/mysql2pgsql {
|
|
|
|
inherit fetchurl stdenv perl shebangfix;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
nc6 = composedArgsAndFun (selectVersion ../tools/networking/nc6 "1.0") {
|
2008-02-03 08:53:47 +00:00
|
|
|
inherit builderDefs;
|
|
|
|
};
|
|
|
|
|
2007-07-09 08:23:16 +01:00
|
|
|
ncat = import ../tools/networking/ncat {
|
|
|
|
inherit fetchurl stdenv openssl;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
netcat = import ../tools/networking/netcat {
|
2006-08-27 14:00:20 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-08-31 12:14:05 +01:00
|
|
|
netselect = import ../tools/networking/netselect {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
nmap = import ../tools/security/nmap {
|
2008-03-22 19:52:11 +00:00
|
|
|
inherit fetchurl stdenv libpcap pkgconfig openssl
|
2008-06-18 23:48:34 +01:00
|
|
|
python pygtk makeWrapper pygobject pycairo
|
2008-03-22 20:56:23 +00:00
|
|
|
pysqlite;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit (xlibs) libX11;
|
|
|
|
inherit (gtkLibs) gtk;
|
2004-11-29 21:17:29 +00:00
|
|
|
};
|
|
|
|
|
2006-12-21 22:23:17 +00:00
|
|
|
ntp = import ../tools/networking/ntp {
|
2006-12-22 19:22:57 +00:00
|
|
|
inherit fetchurl stdenv libcap;
|
2006-12-21 22:23:17 +00:00
|
|
|
};
|
|
|
|
|
2008-03-17 13:41:54 +00:00
|
|
|
nssmdns = import ../tools/networking/nss-mdns {
|
|
|
|
inherit fetchurl stdenv avahi;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
openssh = import ../tools/networking/openssh {
|
2006-12-11 03:24:35 +00:00
|
|
|
inherit fetchurl stdenv zlib openssl pam perl;
|
2008-07-08 00:11:13 +01:00
|
|
|
pamSupport = getPkgConfig "openssh" "pam" true;
|
2003-11-03 18:21:30 +00:00
|
|
|
};
|
|
|
|
|
2007-09-04 12:55:19 +01:00
|
|
|
p7zip = import ../tools/archivers/p7zip {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
par2cmdline = import ../tools/networking/par2cmdline {
|
2008-06-25 16:01:04 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-12-23 20:51:58 +00:00
|
|
|
};
|
|
|
|
|
2008-07-19 00:36:28 +01:00
|
|
|
patchutils = import ../tools/text/patchutils {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
parted = import ../tools/misc/parted {
|
2007-05-13 23:44:31 +01:00
|
|
|
inherit fetchurl stdenv e2fsprogs readline;
|
2003-11-04 08:44:46 +00:00
|
|
|
};
|
|
|
|
|
2007-04-26 14:02:30 +01:00
|
|
|
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 16:53:04 +00:00
|
|
|
|
2007-02-19 20:18:20 +00:00
|
|
|
pciutils = import ../tools/system/pciutils {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2007-03-21 12:53:01 +00:00
|
|
|
pdfjam = import ../tools/typesetting/pdfjam {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-07-08 00:11:36 +01:00
|
|
|
pdsh = import ../tools/networking/pdsh {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
readline = if getPkgConfig "pdsh" "readline" true then readline else null;
|
|
|
|
ssh = if getPkgConfig "pdsh" "ssh" true then openssh else null;
|
|
|
|
pam = if getPkgConfig "pdsh" "pam" true then pam else null;
|
|
|
|
};
|
|
|
|
|
2008-04-26 00:43:14 +01:00
|
|
|
pinentry = import ../tools/misc/pinentry {
|
2008-12-08 21:22:20 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig ncurses;
|
2008-04-26 00:43:14 +01:00
|
|
|
inherit (gnome) glib gtk;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
ploticus = import ../tools/graphics/ploticus {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv zlib libpng;
|
|
|
|
inherit (xlibs) libX11;
|
2005-09-05 12:35:13 +01:00
|
|
|
};
|
2005-09-01 17:38:31 +01:00
|
|
|
|
2008-09-06 13:33:25 +01:00
|
|
|
proxytunnel = import ../tools/misc/proxytunnel {
|
|
|
|
inherit fetchurl stdenv openssl;
|
|
|
|
};
|
|
|
|
|
2007-12-11 11:47:23 +00:00
|
|
|
psmisc = import ../tools/misc/psmisc {
|
|
|
|
inherit stdenv fetchurl ncurses;
|
|
|
|
};
|
|
|
|
|
2007-06-28 10:53:12 +01:00
|
|
|
pwgen = import ../tools/security/pwgen {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2008-11-05 20:03:00 +00:00
|
|
|
pystringtemplate = import ../tools/text/py-string-template {
|
|
|
|
inherit stdenv fetchurl python;
|
|
|
|
/* TODO: Some parts of this package depend on the ANTLR run-time library
|
|
|
|
* for Python. We have a package for ANTLR3, too, but that one is
|
|
|
|
* rather big and contains much more than we need. I guess this issue
|
|
|
|
* calls for some clever refactoring.
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
qtparted = import ../tools/misc/qtparted {
|
2007-03-26 14:39:50 +01:00
|
|
|
inherit fetchurl stdenv e2fsprogs ncurses readline parted zlib qt3;
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit (xlibs) libX11 libXext;
|
2003-12-14 20:36:43 +00:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
relfs = composedArgsAndFun (selectVersion ../tools/misc/relfs "cvs.2008.03.05") {
|
2007-12-06 00:32:21 +00:00
|
|
|
inherit fetchcvs stdenv ocaml postgresql fuse pcre
|
|
|
|
builderDefs e2fsprogs pkgconfig;
|
|
|
|
inherit (gnome) gnomevfs GConf;
|
2007-12-04 22:06:13 +00:00
|
|
|
};
|
|
|
|
|
2007-07-15 12:59:33 +01:00
|
|
|
replace = import ../tools/text/replace {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-09-10 15:29:45 +01:00
|
|
|
/*
|
2007-09-08 21:45:23 +01:00
|
|
|
rdiff_backup = import ../tools/backup/rdiff-backup {
|
|
|
|
inherit fetchurl stdenv librsync gnused;
|
|
|
|
python=python;
|
|
|
|
};
|
2007-09-10 15:29:45 +01:00
|
|
|
*/
|
2007-09-08 21:45:23 +01:00
|
|
|
|
2008-03-07 09:33:51 +00:00
|
|
|
rsnapshot = import ../tools/backup/rsnapshot {
|
|
|
|
inherit fetchurl stdenv perl openssh rsync;
|
|
|
|
|
|
|
|
# For the `logger' command, we can use either `utillinux' or
|
|
|
|
# GNU Inetutils. The latter is more portable.
|
|
|
|
logger = inetutils;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
rlwrap = composedArgsAndFun (selectVersion ../tools/misc/rlwrap "0.28") {
|
2008-01-31 17:32:28 +00:00
|
|
|
inherit builderDefs readline;
|
2008-01-23 23:39:06 +00:00
|
|
|
};
|
|
|
|
|
2007-03-21 19:25:58 +00:00
|
|
|
rpm = import ../tools/package-management/rpm {
|
|
|
|
inherit fetchurl stdenv cpio zlib bzip2 file sqlite beecrypt neon elfutils;
|
|
|
|
};
|
|
|
|
|
2008-02-23 12:11:27 +00:00
|
|
|
rtorrent = import ../tools/networking/p2p/rtorrent {
|
|
|
|
inherit fetchurl stdenv libtorrent ncurses pkgconfig libsigcxx curl zlib openssl;
|
|
|
|
};
|
|
|
|
|
2008-10-05 10:04:30 +01:00
|
|
|
rxp = import ../tools/text/xml/rxp {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
sablotron = import ../tools/text/xml/sablotron {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv expat;
|
2004-02-17 20:03:12 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
screen = import ../tools/misc/screen {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ncurses;
|
2005-12-26 00:51:24 +00:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
seccure = composedArgsAndFun (selectVersion ../tools/security/seccure "0.3") {
|
2008-03-03 12:30:39 +00:00
|
|
|
inherit builderDefs libgcrypt;
|
|
|
|
};
|
|
|
|
|
2008-03-03 23:32:50 +00:00
|
|
|
# seccure will override it (it is root-only, but
|
2008-06-18 23:48:34 +01:00
|
|
|
# more secure because of memory locking), but this
|
2008-03-03 23:32:50 +00:00
|
|
|
# can be added to default system
|
2008-11-04 21:24:10 +00:00
|
|
|
seccureUser = lowPrio (seccure.passthru.function {
|
2008-03-03 23:32:50 +00:00
|
|
|
makeFlags = [" CFLAGS+=-DNOMEMLOCK "];
|
2008-08-14 23:04:30 +01:00
|
|
|
});
|
2008-03-03 23:32:50 +00:00
|
|
|
|
2008-02-18 20:52:25 +00:00
|
|
|
sharutils = selectVersion ../tools/archivers/sharutils "4.6.3" {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-11-14 19:07:38 +00:00
|
|
|
shebangfix = import ../tools/misc/shebangfix {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit stdenv perl;
|
2007-11-14 19:07:38 +00:00
|
|
|
};
|
|
|
|
|
2008-08-21 12:07:29 +01:00
|
|
|
slsnif = import ../tools/misc/slsnif {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-10-18 14:05:43 +01:00
|
|
|
smartmontools = import ../tools/system/smartmontools {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
smbfsFuse = composedArgsAndFun (selectVersion ../tools/networking/smbfs-fuse "0.8.7") {
|
2008-01-25 10:15:19 +00:00
|
|
|
inherit builderDefs samba fuse;
|
|
|
|
};
|
|
|
|
|
2008-05-07 08:23:20 +01:00
|
|
|
socat = builderDefsPackage (selectVersion ../tools/networking/socat "1.6.0.1") {
|
|
|
|
inherit openssl;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-02-03 11:03:54 +00:00
|
|
|
|
2007-06-20 00:55:02 +01:00
|
|
|
sudo = import ../tools/security/sudo {
|
2007-06-28 23:14:25 +01:00
|
|
|
inherit fetchurl stdenv coreutils pam;
|
2007-06-20 00:55:02 +01:00
|
|
|
};
|
|
|
|
|
2007-09-11 12:39:06 +01:00
|
|
|
superkaramba = import ../desktops/superkaramba {
|
|
|
|
inherit stdenv fetchurl kdebase kdelibs zlib libjpeg
|
|
|
|
perl qt3 python libpng freetype expat;
|
|
|
|
inherit (xlibs) libX11 libXext libXt libXaw libXpm;
|
|
|
|
};
|
|
|
|
|
2007-01-06 17:36:03 +00:00
|
|
|
sshfsFuse = import ../tools/networking/sshfs-fuse {
|
|
|
|
inherit fetchurl stdenv pkgconfig fuse;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2007-08-07 23:22:31 +01:00
|
|
|
ssmtp = import ../tools/networking/ssmtp {
|
2007-11-08 17:48:52 +00:00
|
|
|
inherit fetchurl stdenv openssl;
|
|
|
|
tlsSupport = true;
|
2007-08-07 23:22:31 +01:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ssss = composedArgsAndFun (selectVersion ../tools/security/ssss "0.5") {
|
2008-03-03 12:30:39 +00:00
|
|
|
inherit builderDefs gmp;
|
|
|
|
};
|
|
|
|
|
2007-01-11 15:22:59 +00:00
|
|
|
su = import ../tools/misc/su {
|
|
|
|
inherit fetchurl stdenv pam;
|
|
|
|
};
|
|
|
|
|
2007-01-16 14:35:08 +00:00
|
|
|
tcpdump = import ../tools/networking/tcpdump {
|
|
|
|
inherit fetchurl stdenv libpcap;
|
|
|
|
};
|
|
|
|
|
2007-10-09 10:56:39 +01:00
|
|
|
telnet = import ../tools/networking/telnet {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2008-02-10 21:54:01 +00:00
|
|
|
vpnc = import ../tools/networking/vpnc {
|
2008-11-27 10:32:47 +00:00
|
|
|
inherit fetchurl stdenv libgcrypt perl gawk
|
|
|
|
nettools makeWrapper;
|
2008-02-10 21:54:01 +00:00
|
|
|
};
|
|
|
|
|
2007-09-12 16:49:28 +01:00
|
|
|
testdisk = import ../tools/misc/testdisk {
|
|
|
|
inherit fetchurl stdenv ncurses libjpeg e2fsprogs zlib openssl;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
tightvnc = import ../tools/admin/tightvnc {
|
2007-10-05 06:55:44 +01:00
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg perl;
|
2008-03-18 19:45:31 +00:00
|
|
|
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp xauth;
|
2006-04-18 19:46:36 +01:00
|
|
|
};
|
|
|
|
|
2007-04-20 09:50:26 +01:00
|
|
|
time = import ../tools/misc/time {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-21 22:35:14 +01:00
|
|
|
tm = import ../tools/system/tm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
trang = import ../tools/text/xml/trang {
|
2007-03-05 17:13:53 +00:00
|
|
|
inherit fetchurl stdenv unzip jre;
|
2005-08-21 14:59:04 +01:00
|
|
|
};
|
|
|
|
|
2008-08-21 22:35:14 +01:00
|
|
|
ts = import ../tools/system/ts {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
transfig = import ../tools/graphics/transfig {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv libpng libjpeg zlib;
|
|
|
|
inherit (xlibs) imake;
|
2005-08-21 20:46:16 +01:00
|
|
|
};
|
|
|
|
|
2008-07-19 17:14:24 +01:00
|
|
|
truecrypt = import ../applications/misc/truecrypt {
|
|
|
|
inherit fetchurl stdenv pkgconfig fuse;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xorg) libSM;
|
|
|
|
glibc = stdenv.gcc.libc;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ttmkfdir = import ../tools/misc/ttmkfdir {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit debPackage freetype fontconfig libunwind libtool bison;
|
2008-03-02 18:41:32 +00:00
|
|
|
flex = flex2534;
|
|
|
|
};
|
|
|
|
|
2007-06-20 16:15:51 +01:00
|
|
|
units = import ../tools/misc/units {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-06-24 16:34:44 +01:00
|
|
|
unrar = import ../tools/archivers/unrar {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-05-28 18:09:30 +01:00
|
|
|
unshield = import ../tools/archivers/unshield {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
unzip = import ../tools/archivers/unzip {
|
2006-08-15 14:22:45 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-03-11 10:46:20 +00:00
|
|
|
|
2008-07-08 00:24:48 +01:00
|
|
|
wdfs = import ../tools/networking/wdfs {
|
|
|
|
inherit stdenv fetchurl neon fuse pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
wget = composedArgsAndFun (selectVersion ../tools/networking/wget "1.11") {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv gettext;
|
2006-07-17 21:35:02 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
which = import ../tools/system/which {
|
2008-01-20 18:23:55 +00:00
|
|
|
inherit fetchurl stdenv readline;
|
2006-01-27 20:51:41 +00:00
|
|
|
};
|
|
|
|
|
2007-08-18 09:32:12 +01:00
|
|
|
wv = import ../tools/misc/wv {
|
|
|
|
inherit fetchurl stdenv libpng zlib imagemagick
|
2008-02-18 20:52:10 +00:00
|
|
|
pkgconfig libgsf libxml2 bzip2;
|
2007-08-18 09:32:12 +01:00
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2007-04-02 14:46:56 +01:00
|
|
|
x11_ssh_askpass = import ../tools/networking/x11-ssh-askpass {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xorg) imake;
|
|
|
|
};
|
|
|
|
|
2007-09-21 22:40:23 +01:00
|
|
|
xclip = import ../tools/misc/xclip {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXmu;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xmlroff = import ../tools/typesetting/xmlroff {
|
2005-08-13 22:35:49 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
|
|
|
|
inherit (gtkLibs) glib pango gtk;
|
|
|
|
inherit (gnome) libgnomeprint;
|
|
|
|
inherit pangoxsl;
|
2005-08-13 19:12:10 +01:00
|
|
|
};
|
|
|
|
|
2008-03-11 08:44:22 +00:00
|
|
|
xmlto = import ../tools/typesetting/xmlto {
|
|
|
|
inherit fetchurl stdenv flex libxml2 libxslt
|
2008-09-26 09:56:03 +01:00
|
|
|
docbook_xml_dtd_42 docbook_xsl w3m
|
2008-03-11 09:16:12 +00:00
|
|
|
glibc bash getopt mktemp findutils makeWrapper;
|
2008-03-11 08:44:22 +00:00
|
|
|
};
|
|
|
|
|
2005-01-22 00:19:27 +00:00
|
|
|
xmltv = import ../tools/misc/xmltv {
|
|
|
|
inherit fetchurl perl perlTermReadKey perlXMLTwig perlXMLWriter
|
|
|
|
perlDateManip perlHTMLTree perlHTMLParser perlHTMLTagset
|
|
|
|
perlURI perlLWP;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xpf = import ../tools/text/xml/xpf {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv python;
|
2004-08-02 13:27:01 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
libxml2 = import ../development/libraries/libxml2 {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
pythonSupport = true;
|
|
|
|
};
|
2004-08-03 16:41:08 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xsel = import ../tools/misc/xsel {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv x11;
|
2004-08-06 11:01:15 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
zdelta = import ../tools/compression/zdelta {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-12-18 22:14:31 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
zip = import ../tools/archivers/zip {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-03-16 15:13:30 +00:00
|
|
|
};
|
2005-07-29 11:06:49 +01:00
|
|
|
|
2006-07-13 15:54:24 +01:00
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
### SHELLS
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
bash = lowPrio (useFromStdenv "bash"
|
2006-03-08 15:00:18 +00:00
|
|
|
(import ../shells/bash {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit fetchurl stdenv bison;
|
2007-05-01 21:35:58 +01:00
|
|
|
}));
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2008-07-16 16:05:49 +01:00
|
|
|
bashInteractive = appendToName "interactive" (import ../shells/bash/new.nix {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit fetchurl stdenv ncurses texinfo bison;
|
2007-03-06 22:46:03 +00:00
|
|
|
interactive = true;
|
2007-04-26 14:02:30 +01:00
|
|
|
});
|
2007-03-06 22:46:03 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
tcsh = import ../shells/tcsh {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2008-11-22 16:57:16 +00:00
|
|
|
zsh = composedArgsAndFun (selectVersion ../shells/zsh "4.3.9") {
|
2007-06-20 11:02:10 +01:00
|
|
|
inherit fetchurl stdenv ncurses coreutils;
|
|
|
|
};
|
|
|
|
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
### DEVELOPMENT / COMPILERS
|
2003-11-03 18:21:30 +00:00
|
|
|
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
abc =
|
|
|
|
abcPatchable [];
|
2006-08-05 12:02:17 +01:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
abcPatchable = patches :
|
2006-10-18 11:32:45 +01:00
|
|
|
import ../development/compilers/abc/default.nix {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv fetchurl patches jre apacheAnt;
|
|
|
|
javaCup = import ../development/libraries/java/cup {
|
2007-03-05 17:13:53 +00:00
|
|
|
inherit stdenv fetchurl jdk;
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
|
|
|
};
|
2005-12-31 03:46:20 +00:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
aspectj =
|
2006-10-18 11:32:45 +01:00
|
|
|
import ../development/compilers/aspectj {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv fetchurl jre;
|
|
|
|
};
|
2004-09-25 20:32:23 +01:00
|
|
|
|
2008-02-08 01:35:01 +00:00
|
|
|
bigloo = import ../development/compilers/bigloo {
|
2008-04-02 21:54:42 +01:00
|
|
|
inherit fetchurl stdenv;
|
2008-02-08 01:35:01 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
dylan = import ../development/compilers/gwydion-dylan {
|
|
|
|
inherit fetchurl stdenv perl boehmgc yacc flex readline;
|
|
|
|
dylan =
|
|
|
|
import ../development/compilers/gwydion-dylan/binary.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-01-30 10:10:06 +00:00
|
|
|
};
|
|
|
|
|
2008-03-13 18:02:29 +00:00
|
|
|
# Essential Haskell Compiler -- nix expression is work in progress
|
|
|
|
ehc = import ../development/compilers/ehc {
|
2008-03-17 11:59:12 +00:00
|
|
|
inherit fetchsvn stdenv coreutils m4 libtool ghc uulib uuagc llvm;
|
2008-03-13 18:02:29 +00:00
|
|
|
};
|
|
|
|
|
2007-08-11 21:55:40 +01:00
|
|
|
fpc = import ../development/compilers/fpc {
|
2008-04-08 16:11:34 +01:00
|
|
|
inherit fetchurl stdenv gawk system;
|
2007-08-11 21:55:40 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
g77 = import ../build-support/gcc-wrapper {
|
2006-09-15 16:28:53 +01:00
|
|
|
name = "g77";
|
2005-08-28 01:19:42 +01:00
|
|
|
nativeTools = false;
|
2006-10-24 19:26:23 +01:00
|
|
|
nativeLibc = false;
|
2006-10-18 11:32:45 +01:00
|
|
|
gcc = import ../development/compilers/gcc-3.3 {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
2005-08-28 01:19:42 +01:00
|
|
|
};
|
2006-10-27 14:52:37 +01:00
|
|
|
inherit (stdenv.gcc) binutils libc;
|
2005-08-28 01:19:42 +01:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2007-10-27 18:55:13 +01:00
|
|
|
g77_40 = import ../build-support/gcc-wrapper {
|
|
|
|
name = "g77-4.0";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeLibc = false;
|
|
|
|
gcc = import ../development/compilers/gcc-4.0 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit gmp mpfr;
|
2007-10-27 18:55:13 +01:00
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) binutils libc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-10-27 18:55:13 +01:00
|
|
|
g77_41 = import ../build-support/gcc-wrapper {
|
|
|
|
name = "g77-4.1";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeLibc = false;
|
|
|
|
gcc = import ../development/compilers/gcc-4.1 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
|
|
|
langC = false;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit gmp mpfr;
|
2007-10-27 18:55:13 +01:00
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) binutils libc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-04-02 20:55:40 +01:00
|
|
|
g77_42 = import ../build-support/gcc-wrapper {
|
|
|
|
name = "g77-4.2";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeLibc = false;
|
|
|
|
gcc = import ../development/compilers/gcc-4.2/fortran.nix {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
|
|
|
langC = false;
|
|
|
|
inherit gmp mpfr;
|
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) binutils libc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-09-05 18:11:12 +01:00
|
|
|
gfortran = import ../build-support/gcc-wrapper-new {
|
2008-08-07 09:33:03 +01:00
|
|
|
name = "gfortran";
|
|
|
|
nativeTools = false;
|
|
|
|
nativeLibc = false;
|
|
|
|
gcc = import ../development/compilers/gcc-4.2/fortran.nix {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langF77 = true;
|
|
|
|
langCC = false;
|
|
|
|
langC = false;
|
|
|
|
inherit gmp mpfr;
|
|
|
|
};
|
|
|
|
inherit (stdenv.gcc) binutils libc;
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
|
|
|
|
2007-11-15 15:19:58 +00:00
|
|
|
gcc = gcc42;
|
2004-06-29 09:25:55 +01:00
|
|
|
|
2006-07-10 16:42:19 +01:00
|
|
|
gcc295 = wrapGCC (import ../development/compilers/gcc-2.95 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
|
|
|
|
|
|
|
gcc33 = wrapGCC (import ../development/compilers/gcc-3.3 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
|
|
|
|
|
|
|
gcc34 = wrapGCC (import ../development/compilers/gcc-3.4 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
});
|
|
|
|
|
2008-02-21 15:34:56 +00:00
|
|
|
# XXX: GCC 4.2 (and possibly others) misdetects `makeinfo' when
|
|
|
|
# using Texinfo >= 4.10, just because it uses a stupid regexp that
|
|
|
|
# expects a single digit after the dot. As a workaround, we feed
|
|
|
|
# GCC with Texinfo 4.9. Stupid bug, hackish workaround.
|
|
|
|
|
2006-07-10 16:42:19 +01:00
|
|
|
gcc40 = wrapGCC (import ../development/compilers/gcc-4.0 {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2008-02-21 15:34:56 +00:00
|
|
|
texinfo = texinfo49;
|
2006-07-10 16:42:19 +01:00
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
|
|
|
|
2007-11-15 15:19:58 +00:00
|
|
|
gcc41 = wrapGCC (import ../development/compilers/gcc-4.1 {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2008-02-21 15:34:56 +00:00
|
|
|
texinfo = texinfo49;
|
2006-10-26 21:23:49 +01:00
|
|
|
profiledCompiler = false;
|
2007-11-15 15:19:58 +00:00
|
|
|
});
|
2007-08-19 00:58:30 +01:00
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
gcc42 = useFromStdenv "gcc" (wrapGCC (import ../development/compilers/gcc-4.2 {
|
2007-05-19 20:44:15 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2007-05-21 22:48:06 +01:00
|
|
|
profiledCompiler = true;
|
2007-06-03 21:17:07 +01:00
|
|
|
}));
|
2007-05-19 20:44:15 +01:00
|
|
|
|
2008-06-27 19:26:19 +01:00
|
|
|
gcc43 = lowPrio (wrapGCCWith (import ../build-support/gcc-wrapper-new) glibc (import ../development/compilers/gcc-4.3 {
|
2008-06-26 11:20:33 +01:00
|
|
|
inherit fetchurl stdenv texinfo gmp mpfr noSysDirs;
|
|
|
|
profiledCompiler = false;
|
2008-06-27 19:26:19 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
gcc43multi = lowPrio (wrapGCCWith (import ../build-support/gcc-wrapper-new) glibc_multi (import ../development/compilers/gcc-4.3 {
|
|
|
|
stdenv = overrideGCC stdenv (wrapGCCWith (import ../build-support/gcc-wrapper) glibc_multi gcc42);
|
|
|
|
inherit fetchurl texinfo gmp mpfr noSysDirs;
|
|
|
|
profiledCompiler = false;
|
|
|
|
enableMultilib = true;
|
2008-06-26 11:20:33 +01:00
|
|
|
}));
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
gccApple = wrapGCC (import ../development/compilers/gcc-apple {
|
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
profiledCompiler = true;
|
|
|
|
});
|
|
|
|
|
2008-03-04 16:20:11 +00:00
|
|
|
gccupc40 = wrapGCCUPC (import ../development/compilers/gcc-upc-4.0 {
|
|
|
|
inherit fetchurl stdenv bison autoconf gnum4 noSysDirs;
|
|
|
|
texinfo = texinfo49;
|
|
|
|
});
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
# This new ghc stuff is under heavy development and will change !
|
2008-02-21 15:52:31 +00:00
|
|
|
# ===============================================================
|
2007-11-05 09:27:36 +00:00
|
|
|
|
2008-02-20 23:02:41 +00:00
|
|
|
# usage: see ghcPkgUtil.sh
|
2008-01-22 14:34:23 +00:00
|
|
|
# depreceated -> use functions defined in builderDefs
|
2008-06-18 23:48:34 +01:00
|
|
|
ghcPkgUtil = runCommand "ghcPkgUtil-internal"
|
2007-11-05 09:27:36 +00:00
|
|
|
{ ghcPkgUtil = ../development/libraries/haskell/generic/ghcPkgUtil.sh; }
|
|
|
|
"mkdir -p $out/nix-support; cp $ghcPkgUtil \$out/nix-support/setup-hook;";
|
|
|
|
|
2008-03-06 02:46:29 +00:00
|
|
|
ghcsAndLibs =
|
2007-11-23 16:58:42 +00:00
|
|
|
assert builtins ? listToAttrs;
|
|
|
|
recurseIntoAttrs (import ../development/compilers/ghcs {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit ghcboot fetchurl stdenv recurseIntoAttrs perl gnum4 gmp readline lib;
|
2008-08-21 12:07:44 +01:00
|
|
|
inherit ghcPkgUtil ctags autoconf automake getConfig;
|
|
|
|
inherit (ghc68executables) hasktags;
|
2008-04-28 23:33:20 +01:00
|
|
|
inherit (bleedingEdgeRepos) sourceByName;
|
|
|
|
|
|
|
|
# needed for install darcs ghc version
|
|
|
|
happy = ghc68executables.happy;
|
|
|
|
alex = ghc68executables.alex;
|
2007-11-23 16:58:42 +00:00
|
|
|
});
|
2007-11-05 09:27:36 +00:00
|
|
|
|
|
|
|
# creates ghc-X-wl wich adds the passed libraries to the env var GHC_PACKAGE_PATH
|
2008-03-06 19:48:55 +00:00
|
|
|
ghcWrapper = { ghcPackagedLibs ? false, ghc, libraries, name, suffix ? "ghc_wrapper_${ghc.name}" } :
|
|
|
|
import ../development/compilers/ghc/ghc-wrapper {
|
2008-03-06 02:46:29 +00:00
|
|
|
inherit ghcPackagedLibs ghc name suffix libraries ghcPkgUtil
|
2008-06-18 23:48:34 +01:00
|
|
|
lib
|
2008-03-06 02:46:29 +00:00
|
|
|
readline ncurses stdenv;
|
2008-06-15 12:54:22 +01:00
|
|
|
inherit (sourceAndTags) sourceWithTagsDerivation annotatedWithSourceAndTagInfo sourceWithTagsFromDerivation;
|
2008-03-06 02:46:29 +00:00
|
|
|
#inherit stdenv ghcPackagedLibs ghc name suffix libraries ghcPkgUtil
|
|
|
|
# annotatedDerivations lib sourceWithTagsDerivation annotatedWithSourceAndTagInfo;
|
2008-04-11 01:40:10 +01:00
|
|
|
installSourceAndTags = getConfig ["haskell" "ghcWrapper" "installSourceAndTags"] false;
|
2007-11-05 09:27:36 +00:00
|
|
|
};
|
|
|
|
|
2008-02-09 14:08:37 +00:00
|
|
|
|
|
|
|
# args must contain src name buildInputs
|
|
|
|
# classic expression style.. seems to work fine
|
|
|
|
# used now
|
2008-02-12 16:24:02 +00:00
|
|
|
#
|
|
|
|
# args must contain: src name buildInputs propagatedBuildInputs
|
|
|
|
# classic expression style.. seems to work fine
|
|
|
|
# used now
|
2008-04-28 23:33:20 +01:00
|
|
|
# srcDir contains source directory (containing the .cabal file)
|
2008-08-06 12:41:17 +01:00
|
|
|
# TODO: set --bindir=/usr/local or such (executables are installed to
|
|
|
|
# /usr/local/bin which is not added to path when building other packages
|
|
|
|
# hsp needs trhsx from hsx
|
|
|
|
# TODO add eval "$preBuild" phase
|
2008-03-06 02:46:29 +00:00
|
|
|
ghcCabalDerivation = args : with args;
|
2008-04-11 01:40:10 +01:00
|
|
|
let buildInputs = (if (args ? buildInputs) then args.buildInputs else [])
|
|
|
|
++ [ ghcPkgUtil ] ++ ( if args ? pass && args.pass ? buildInputs then args.pass.buildInputs else []);
|
2008-06-18 23:48:34 +01:00
|
|
|
configure = if (args ? useLocalPkgDB)
|
2008-05-13 14:19:52 +01:00
|
|
|
then "nix_ghc_pkg_tool join localDb\n" +
|
|
|
|
"\$CABAL_SETUP configure --package-db=localDb \$profiling \$cabalFlags"
|
|
|
|
else "\$CABAL_SETUP configure --by-env=\$PACKAGE_DB \$profiling \$cabalFlags";
|
2008-04-11 01:40:10 +01:00
|
|
|
in stdenv.mkDerivation ({
|
2008-04-11 16:26:51 +01:00
|
|
|
srcDir = if (args ? srcDir) then args.srcDir else ".";
|
2008-03-06 02:46:29 +00:00
|
|
|
inherit (args) name src propagatedBuildInputs;
|
2008-02-12 16:24:02 +00:00
|
|
|
phases = "unpackPhase patchPhase buildPhase";
|
2008-04-28 23:33:20 +01:00
|
|
|
profiling = if getConfig [ "ghc68" "profiling" ] false then "-p" else "";
|
2008-06-18 23:48:34 +01:00
|
|
|
cabalFlags = map lib.escapeShellArg
|
2008-05-13 14:19:52 +01:00
|
|
|
(getConfig [ "cabal" "flags" ] []
|
|
|
|
++ (if args ? cabalFlags then args.cabalFlags else []) );
|
2008-02-12 16:24:02 +00:00
|
|
|
# TODO remove echo line
|
2008-02-09 14:08:37 +00:00
|
|
|
buildPhase ="
|
|
|
|
createEmptyPackageDatabaseAndSetupHook
|
|
|
|
export GHC_PACKAGE_PATH
|
|
|
|
|
2008-04-11 16:26:51 +01:00
|
|
|
cd \$srcDir
|
2008-02-09 14:08:37 +00:00
|
|
|
ghc --make Setup.*hs -o setup
|
|
|
|
CABAL_SETUP=./setup
|
|
|
|
|
2008-05-13 14:19:52 +01:00
|
|
|
" + configure +"
|
2008-02-09 14:08:37 +00:00
|
|
|
\$CABAL_SETUP build
|
|
|
|
\$CABAL_SETUP copy --destdir=\$out
|
|
|
|
\$CABAL_SETUP register --gen-script
|
|
|
|
sed -e \"s=/usr/local/lib=\$out/usr/local/lib=g\" \\
|
|
|
|
-e \"s#bin/ghc-pkg --package-conf.*#bin/ghc-pkg --package-conf=\$PACKAGE_DB register -#\" \\
|
|
|
|
-i register.sh
|
|
|
|
./register.sh
|
|
|
|
rm \${PACKAGE_DB}.old
|
|
|
|
|
|
|
|
ensureDir \"\$out/nix-support\"
|
2008-02-12 16:24:02 +00:00
|
|
|
|
2008-02-09 14:08:37 +00:00
|
|
|
echo \"\$propagatedBuildInputs\" > \"\$out/nix-support/propagated-build-inputs\"
|
|
|
|
";
|
2008-04-11 01:40:10 +01:00
|
|
|
} // ( if args ? pass then (args.pass) else {} ) // { inherit buildInputs; } );
|
|
|
|
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
ghcCabalExecutableFun = (import ../development/compilers/ghc/ghc-wrapper/ghc-cabal-executable-fun.nix){
|
2008-04-11 01:40:10 +01:00
|
|
|
inherit ghc68extraLibs ghcsAndLibs stdenv lib;
|
|
|
|
# extra packages from this top level file:
|
|
|
|
inherit perl;
|
|
|
|
};
|
2008-03-06 02:46:29 +00:00
|
|
|
|
2008-05-13 14:19:52 +01:00
|
|
|
# this may change in the future
|
2008-03-13 22:55:18 +00:00
|
|
|
ghc68extraLibs = (import ../misc/ghc68extraLibs ) {
|
2008-03-11 09:18:14 +00:00
|
|
|
# lib like stuff
|
2008-06-15 12:54:22 +01:00
|
|
|
inherit (sourceAndTags) addHasktagsTaggingInfo;
|
|
|
|
inherit bleedingEdgeRepos fetchurl lib ghcCabalDerivation pkgconfig unzip zlib;
|
2008-03-11 09:18:14 +00:00
|
|
|
# used (non haskell) libraries (ffi etc)
|
2008-05-13 14:19:52 +01:00
|
|
|
inherit postgresql mysql sqlite gtkLibs gnome xlibs freetype getConfig libpng bzip2 pcre;
|
2008-04-11 01:40:10 +01:00
|
|
|
|
|
|
|
executables = ghc68executables;
|
2008-03-20 19:29:52 +00:00
|
|
|
wxGTK = wxGTK26;
|
2008-03-11 09:18:14 +00:00
|
|
|
};
|
2008-04-28 23:33:20 +01:00
|
|
|
|
2008-01-22 14:34:23 +00:00
|
|
|
|
2008-04-11 01:40:10 +01:00
|
|
|
# Executables compiled by this ghc68 - I'm too lazy to add them all as additional file in here
|
|
|
|
ghc68executables = recurseIntoAttrs (import ../misc/ghc68executables {
|
2008-05-13 14:19:52 +01:00
|
|
|
inherit ghcCabalExecutableFun fetchurl lib bleedingEdgeRepos autoconf zlib getConfig;
|
2008-04-11 01:40:10 +01:00
|
|
|
inherit X11;
|
|
|
|
inherit (xlibs) xmessage;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit pkgs; # passing pkgs to add the possibility for the user to add his own executables. pkgs is passed.
|
2008-04-11 01:40:10 +01:00
|
|
|
});
|
|
|
|
|
2007-11-05 09:27:36 +00:00
|
|
|
# the wrappers basically does one thing: It defines GHC_PACKAGE_PATH before calling ghc{i,-pkg}
|
|
|
|
# So you can have different wrappers with different library combinations
|
2008-02-12 16:24:02 +00:00
|
|
|
# So installing ghc libraries isn't done by nix-env -i package but by adding
|
2008-02-09 14:08:37 +00:00
|
|
|
# the lib to the libraries list below
|
|
|
|
# Doesn't create that much useless symlinks (you seldomly want to read the
|
|
|
|
# .hi and .o files, right?
|
2008-06-18 23:48:34 +01:00
|
|
|
ghcLibraryWrapper68 =
|
2007-11-05 09:27:36 +00:00
|
|
|
let ghc = ghcsAndLibs.ghc68.ghc; in
|
2008-03-06 19:48:55 +00:00
|
|
|
ghcWrapper rec {
|
2007-11-05 09:27:36 +00:00
|
|
|
ghcPackagedLibs = true;
|
2008-01-22 14:34:23 +00:00
|
|
|
name = "ghc${ghc.version}_wrapper";
|
|
|
|
suffix = "${ghc.version}wrapper";
|
2008-06-18 23:48:34 +01:00
|
|
|
libraries =
|
2008-02-09 14:08:37 +00:00
|
|
|
# core_libs distributed with this ghc version
|
2008-03-09 00:08:45 +00:00
|
|
|
(lib.flattenAttrs ghcsAndLibs.ghc68.core_libs)
|
|
|
|
# (map ( a : __getAttr a ghcsAndLibs.ghc68.core_libs ) [ "cabal" "mtl" "base" ]
|
2008-02-09 14:08:37 +00:00
|
|
|
|
2008-03-09 00:08:45 +00:00
|
|
|
# some extra libs
|
2008-03-13 22:55:18 +00:00
|
|
|
++ (lib.flattenAttrs (ghc68extraLibs ghcsAndLibs.ghc68) );
|
|
|
|
# ++ map ( a : __getAttr a (ghc68extraLibs ghcsAndLibs.ghc68 ) ) [ "mtl" "parsec" ... ]
|
2007-11-05 09:27:36 +00:00
|
|
|
inherit ghc;
|
|
|
|
};
|
|
|
|
|
2006-12-15 13:32:55 +00:00
|
|
|
# ghc66boot = import ../development/compilers/ghc-6.6-boot {
|
|
|
|
# inherit fetchurl stdenv perl readline;
|
|
|
|
# m4 = gnum4;
|
|
|
|
#};
|
|
|
|
|
2008-07-21 15:43:33 +01:00
|
|
|
ghc = ghc683;
|
2007-01-24 14:26:16 +00:00
|
|
|
|
2008-07-21 15:43:33 +01:00
|
|
|
ghc682 = import ../development/compilers/ghc-6.8/ghc-6.8.2.nix {
|
2008-05-26 14:28:11 +01:00
|
|
|
inherit fetchurl stdenv readline perl gmp ncurses m4;
|
2007-10-19 14:24:29 +01:00
|
|
|
ghc = ghcboot;
|
2007-12-10 10:50:59 +00:00
|
|
|
};
|
2007-10-19 14:24:29 +01:00
|
|
|
|
2008-07-21 15:43:33 +01:00
|
|
|
ghc683 = import ../development/compilers/ghc-6.8/ghc-6.8.3.nix {
|
2008-06-04 10:42:25 +01:00
|
|
|
inherit fetchurl stdenv readline perl gmp ncurses m4;
|
|
|
|
ghc = ghcboot;
|
2008-07-22 14:01:30 +01:00
|
|
|
haddock = haddockboot;
|
2008-06-04 10:42:25 +01:00
|
|
|
};
|
|
|
|
|
2008-07-25 15:21:54 +01:00
|
|
|
ghc69snapshot = lowPrio (import ../development/compilers/ghc-6.8/head.nix {
|
2008-07-31 13:36:47 +01:00
|
|
|
inherit fetchurl stdenv readline perl gmp ncurses m4 happy alex haskellEditline;
|
2008-07-21 15:43:33 +01:00
|
|
|
ghc = ghc683;
|
2008-07-25 15:21:54 +01:00
|
|
|
});
|
2008-07-21 15:43:33 +01:00
|
|
|
|
2007-05-06 16:39:39 +01:00
|
|
|
ghc661 = import ../development/compilers/ghc-6.6.1 {
|
2008-05-26 14:28:11 +01:00
|
|
|
inherit fetchurl stdenv readline perl58 gmp ncurses m4;
|
2007-05-06 16:39:39 +01:00
|
|
|
ghc = ghcboot;
|
|
|
|
};
|
|
|
|
|
2006-12-15 13:32:55 +00:00
|
|
|
ghc66 = import ../development/compilers/ghc-6.6 {
|
2008-05-26 14:28:11 +01:00
|
|
|
inherit fetchurl stdenv readline perl gmp ncurses m4;
|
2006-12-15 13:32:55 +00:00
|
|
|
ghc = ghcboot;
|
|
|
|
};
|
|
|
|
|
2007-01-24 14:26:16 +00:00
|
|
|
ghc64 = import ../development/compilers/ghc {
|
2007-08-15 12:25:20 +01:00
|
|
|
inherit fetchurl stdenv perl ncurses readline m4 gmp;
|
2006-09-15 16:28:53 +01:00
|
|
|
gcc = stdenv.gcc;
|
|
|
|
ghc = ghcboot;
|
|
|
|
};
|
|
|
|
|
2007-05-01 21:35:58 +01:00
|
|
|
ghcboot = lowPrio (appendToName "boot" (import ../development/compilers/ghc/boot.nix {
|
2008-02-22 14:43:00 +00:00
|
|
|
inherit fetchurl stdenv ncurses gmp;
|
2007-08-08 00:59:08 +01:00
|
|
|
readline = if stdenv.system == "i686-linux" then readline4 else readline;
|
2008-02-22 14:43:00 +00:00
|
|
|
perl = perl58;
|
2007-05-01 21:35:58 +01:00
|
|
|
}));
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2008-11-19 21:46:19 +00:00
|
|
|
ghcboot610 = lowPrio (appendToName "boot" (import ../development/compilers/ghc/boot610.nix {
|
|
|
|
inherit fetchurl stdenv ncurses gmp editline makeWrapper;
|
|
|
|
# readline = if stdenv.system == "i686-linux" then readline4 else readline;
|
|
|
|
perl = perl58;
|
|
|
|
}));
|
2007-01-24 21:08:54 +00:00
|
|
|
/*
|
2006-09-15 16:28:53 +01:00
|
|
|
ghcWrapper = assert uulib.ghc == ghc;
|
2006-10-18 11:32:45 +01:00
|
|
|
import ../development/compilers/ghc-wrapper {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv ghc;
|
2006-12-13 23:25:36 +00:00
|
|
|
libraries = [];
|
2005-08-17 15:29:04 +01:00
|
|
|
};
|
2007-01-24 21:08:54 +00:00
|
|
|
*/
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-02-13 08:43:38 +00:00
|
|
|
gwt = import ../development/compilers/gwt {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit (gtkLibs) glib gtk pango atk;
|
|
|
|
inherit (xlibs) libX11 libXt;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
helium = import ../development/compilers/helium {
|
2008-02-22 14:09:29 +00:00
|
|
|
inherit fetchurl stdenv ghc;
|
2005-09-07 11:08:00 +01:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ikarus = builderDefsPackage (selectVersion ../development/compilers/ikarus "0.0.3") {
|
2008-05-06 08:03:41 +01:00
|
|
|
inherit gmp;
|
|
|
|
};
|
|
|
|
|
2008-01-29 09:47:34 +00:00
|
|
|
javafront = import ../development/compilers/java-front {
|
|
|
|
inherit stdenv fetchurl pkgconfig;
|
|
|
|
sdf = sdf24;
|
|
|
|
aterm = aterm25;
|
|
|
|
strategoxt = strategoxt017;
|
|
|
|
};
|
|
|
|
|
2007-08-20 11:34:49 +01:00
|
|
|
#TODO add packages http://cvs.haskell.org/Hugs/downloads/2006-09/packages/ and test
|
|
|
|
# commented out because it's using the new configuration style proposal which is unstable
|
|
|
|
#hugs = import ../development/compilers/hugs {
|
|
|
|
#inherit lib fetchurl stdenv;
|
|
|
|
#};
|
|
|
|
|
2007-04-16 11:07:06 +01:00
|
|
|
j2sdk14x =
|
|
|
|
assert system == "i686-linux";
|
|
|
|
import ../development/compilers/jdk/default-1.4.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-03-05 17:13:53 +00:00
|
|
|
|
2008-01-23 12:25:08 +00:00
|
|
|
jdk5 =
|
2008-01-24 10:14:33 +00:00
|
|
|
assert system == "i686-linux" || system == "x86_64-linux";
|
2008-01-23 12:25:08 +00:00
|
|
|
import ../development/compilers/jdk/default-5.nix {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-03-28 19:55:57 +01:00
|
|
|
jdk = jdkdistro true false;
|
|
|
|
jre = jdkdistro false false;
|
|
|
|
|
2007-03-28 16:31:00 +01:00
|
|
|
jdkPlugin = jdkdistro true true;
|
2007-03-28 19:55:57 +01:00
|
|
|
jrePlugin = jdkdistro false true;
|
2007-03-28 16:21:43 +01:00
|
|
|
|
2007-04-16 11:22:20 +01:00
|
|
|
supportsJDK =
|
|
|
|
system == "i686-linux" ||
|
|
|
|
system == "x86_64-linux" ||
|
|
|
|
system == "powerpc-linux";
|
|
|
|
|
2007-04-16 11:07:06 +01:00
|
|
|
jdkdistro = installjdk: pluginSupport:
|
2007-05-16 15:49:28 +01:00
|
|
|
assert supportsJDK;
|
|
|
|
(if pluginSupport then appendToName "plugin" else x: x) (import ../development/compilers/jdk {
|
2008-02-26 15:24:33 +00:00
|
|
|
inherit fetchurl stdenv unzip installjdk xlibs pluginSupport makeWrapper;
|
2007-05-16 15:49:28 +01:00
|
|
|
});
|
2003-12-21 20:52:13 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
jikes = import ../development/compilers/jikes {
|
2004-05-12 16:06:23 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
lazarus = builderDefsPackage (import ../development/compilers/fpc/lazarus.nix) {
|
2008-04-08 16:11:34 +01:00
|
|
|
inherit fpc makeWrapper;
|
|
|
|
inherit (gtkLibs1x) gtk glib gdkpixbuf;
|
|
|
|
inherit (xlibs) libXi inputproto libX11 xproto libXext xextproto;
|
|
|
|
};
|
|
|
|
|
2008-03-17 11:18:21 +00:00
|
|
|
llvm = import ../development/compilers/llvm {
|
2008-03-17 11:28:52 +00:00
|
|
|
inherit fetchurl stdenv gcc flex perl libtool;
|
2008-03-17 11:18:21 +00:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
llvmGCC = builderDefsPackage (import ../development/compilers/llvm/llvm-gcc.nix) {
|
2008-04-02 20:55:40 +01:00
|
|
|
flex=flex2535;
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit llvm perl libtool bison;
|
2008-04-02 20:55:40 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
mono = import ../development/compilers/mono {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv bison pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
|
|
|
monoDLLFixer = import ../build-support/mono-dll-fixer {
|
|
|
|
inherit stdenv perl;
|
|
|
|
};
|
|
|
|
|
2008-01-25 11:56:36 +00:00
|
|
|
monotone = import ../applications/version-management/monotone {
|
|
|
|
inherit stdenv fetchurl boost zlib;
|
|
|
|
};
|
|
|
|
|
2008-06-11 07:12:18 +01:00
|
|
|
monotoneViz = builderDefsPackage (selectVersion ../applications/version-management/monotone-viz "1.0.1") {
|
|
|
|
inherit ocaml lablgtk graphviz pkgconfig;
|
|
|
|
inherit (gnome) gtk libgnomecanvas glib;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-11 07:12:18 +01:00
|
|
|
|
2008-06-12 16:59:59 +01:00
|
|
|
viewMtn = builderDefsPackage (selectVersion ../applications/version-management/viewmtn "0.10")
|
|
|
|
{
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit monotone flup cheetahTemplate highlight ctags
|
2008-09-24 09:50:32 +01:00
|
|
|
makeWrapper graphviz which python;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-12 16:59:59 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
nasm = import ../development/compilers/nasm {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-11-14 22:39:58 +00:00
|
|
|
ocaml = getVersion "ocaml" ocaml_alts;
|
2004-07-16 23:58:15 +01:00
|
|
|
|
2007-11-14 22:39:58 +00:00
|
|
|
ocaml_alts = import ../development/compilers/ocaml {
|
2007-11-17 14:34:34 +00:00
|
|
|
inherit fetchurl stdenv x11 ncurses;
|
2006-03-01 09:18:22 +00:00
|
|
|
};
|
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
2006-10-18 11:32:45 +01:00
|
|
|
gcj = import ../build-support/gcc-wrapper/default2.nix {
|
2006-09-15 16:28:53 +01:00
|
|
|
name = "gcj";
|
|
|
|
nativeTools = false;
|
2006-10-24 19:26:23 +01:00
|
|
|
nativeLibc = false;
|
2006-10-18 11:32:45 +01:00
|
|
|
gcc = import ../development/compilers/gcc-4.0 {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
|
|
|
langJava = true;
|
|
|
|
langCC = false;
|
|
|
|
langC = false;
|
|
|
|
langF77 = false;
|
|
|
|
};
|
2006-10-27 14:52:37 +01:00
|
|
|
inherit (stdenv.gcc) binutils libc;
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv;
|
|
|
|
};
|
2008-03-17 09:41:28 +00:00
|
|
|
*/
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
opencxx = import ../development/compilers/opencxx {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
gcc = gcc33;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
qcmm = import ../development/compilers/qcmm {
|
2006-03-01 09:18:22 +00:00
|
|
|
lua = lua4;
|
2008-01-28 19:32:59 +00:00
|
|
|
ocaml = builtins.getAttr "3.08.0" ocaml_alts;
|
2006-03-01 09:18:22 +00:00
|
|
|
inherit fetchurl stdenv mk noweb groff;
|
2006-02-02 17:07:07 +00:00
|
|
|
};
|
|
|
|
|
2008-02-08 01:57:31 +00:00
|
|
|
roadsend = import ../development/compilers/roadsend {
|
|
|
|
inherit fetchurl stdenv flex bison mkDerivationByConfiguration bigloo lib curl;
|
|
|
|
# optional features
|
|
|
|
# all features pcre, fcgi xml mysql, sqlite3, (not implemented: odbc gtk gtk2)
|
2008-03-11 22:34:17 +00:00
|
|
|
flags = ["pcre" "xml" "mysql"];
|
|
|
|
inherit mysql libxml2 fcgi;
|
2008-02-08 01:57:31 +00:00
|
|
|
};
|
|
|
|
|
2008-04-11 23:06:32 +01:00
|
|
|
scala = import ../development/compilers/scala {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2008-05-29 13:10:10 +01:00
|
|
|
stalin = import ../development/compilers/stalin {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
strategoLibraries = import ../development/compilers/strategoxt/libraries/stratego-libraries-0.17pre.nix {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv fetchurl pkgconfig aterm;
|
2005-03-03 17:19:58 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
strategoxt = import ../development/compilers/strategoxt {
|
2006-06-23 21:11:36 +01:00
|
|
|
inherit fetchurl pkgconfig sdf aterm;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
2005-10-31 14:28:11 +00:00
|
|
|
};
|
|
|
|
|
2008-01-29 09:42:20 +00:00
|
|
|
strategoxt017 = import ../development/compilers/strategoxt/strategoxt-0.17.nix {
|
|
|
|
inherit fetchurl pkgconfig;
|
|
|
|
sdf = sdf24;
|
|
|
|
aterm = aterm25;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
strategoxtUtils = import ../development/compilers/strategoxt/utils {
|
2005-11-04 19:20:51 +00:00
|
|
|
inherit fetchurl pkgconfig stdenv aterm sdf strategoxt;
|
2005-06-30 17:54:25 +01:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
swiProlog = composedArgsAndFun (selectVersion ../development/compilers/swi-prolog "5.6.51") {
|
2008-03-06 21:53:54 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-10-31 16:52:44 +00:00
|
|
|
tinycc = import ../development/compilers/tinycc {
|
|
|
|
inherit fetchurl stdenv perl texinfo;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
transformers = import ../development/compilers/transformers {
|
2008-09-05 18:17:00 +01:00
|
|
|
inherit fetchurl pkgconfig sdf stlport;
|
2008-08-29 12:48:44 +01:00
|
|
|
aterm = aterm23;
|
2005-12-22 07:39:06 +00:00
|
|
|
|
2006-06-24 12:16:29 +01:00
|
|
|
stdenv = overrideGCC (overrideInStdenv stdenv [gnumake380]) gcc34;
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
strategoxt = import ../development/compilers/strategoxt/strategoxt-0.14.nix {
|
2006-06-23 23:47:19 +01:00
|
|
|
inherit fetchurl pkgconfig sdf;
|
2008-08-29 12:48:44 +01:00
|
|
|
aterm = aterm23;
|
2006-06-24 11:28:50 +01:00
|
|
|
stdenv = overrideGCC (overrideInStdenv stdenv [gnumake380]) gcc34;
|
2005-12-22 07:39:06 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-06-02 10:56:10 +01:00
|
|
|
visualcpp = import ../development/compilers/visual-c++ {
|
2006-06-05 20:26:11 +01:00
|
|
|
inherit fetchurl stdenv cabextract;
|
2006-06-02 10:56:10 +01:00
|
|
|
};
|
|
|
|
|
2008-01-29 11:46:34 +00:00
|
|
|
webdsl = import ../development/compilers/webdsl {
|
|
|
|
inherit stdenv fetchurl pkgconfig javafront;
|
|
|
|
aterm = aterm25;
|
|
|
|
sdf = sdf24;
|
|
|
|
strategoxt = strategoxt017;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
win32hello = import ../development/compilers/visual-c++/test {
|
|
|
|
inherit fetchurl stdenv visualcpp windowssdk;
|
|
|
|
};
|
|
|
|
|
2008-06-27 19:26:19 +01:00
|
|
|
wrapGCCWith = gccWrapper: glibc: baseGCC: gccWrapper {
|
2007-05-16 16:15:46 +01:00
|
|
|
nativeTools = stdenv ? gcc && stdenv.gcc.nativeTools;
|
2008-03-04 16:20:11 +00:00
|
|
|
nativeLibc = stdenv ? gcc && stdenv.gcc.nativeLibc;
|
2008-06-18 16:09:13 +01:00
|
|
|
nativePrefix = if stdenv ? gcc then stdenv.gcc.nativePrefix else "";
|
2008-03-04 16:20:11 +00:00
|
|
|
gcc = baseGCC;
|
|
|
|
libc = glibc;
|
|
|
|
inherit stdenv binutils;
|
|
|
|
};
|
|
|
|
|
2008-06-27 19:26:19 +01:00
|
|
|
wrapGCC = wrapGCCWith (import ../build-support/gcc-wrapper) glibc;
|
2008-06-26 12:07:46 +01:00
|
|
|
|
2008-03-04 16:20:11 +00:00
|
|
|
# FIXME: This is a specific hack for GCC-UPC. Eventually, we may
|
|
|
|
# want to merge `gcc-upc-wrapper' and `gcc-wrapper'.
|
|
|
|
wrapGCCUPC = baseGCC: import ../build-support/gcc-upc-wrapper {
|
|
|
|
nativeTools = stdenv ? gcc && stdenv.gcc.nativeTools;
|
2007-05-16 16:15:46 +01:00
|
|
|
nativeLibc = stdenv ? gcc && stdenv.gcc.nativeLibc;
|
2006-09-15 16:28:53 +01:00
|
|
|
gcc = baseGCC;
|
2006-10-24 21:53:54 +01:00
|
|
|
libc = glibc;
|
|
|
|
inherit stdenv binutils;
|
2006-06-02 11:09:19 +01:00
|
|
|
};
|
|
|
|
|
2008-03-13 01:13:53 +00:00
|
|
|
# prolog
|
|
|
|
yap = import ../development/compilers/yap {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
### DEVELOPMENT / INTERPRETERS
|
|
|
|
|
|
|
|
|
|
|
|
clisp = import ../development/interpreters/clisp {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv libsigsegv gettext
|
2008-03-17 09:41:28 +00:00
|
|
|
readline ncurses coreutils pcre zlib;
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit (xlibs) libX11 libXau libXt xproto
|
2008-08-08 23:37:37 +01:00
|
|
|
libXpm libXext xextproto;
|
2006-10-18 15:04:55 +01:00
|
|
|
};
|
|
|
|
|
2008-02-07 10:43:05 +00:00
|
|
|
erlang = selectVersion ../development/interpreters/erlang "R12B-1" {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit fetchurl stdenv perl gnum4 ncurses openssl;
|
2008-01-23 10:06:07 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
guile = import ../development/interpreters/guile {
|
2008-03-13 14:18:29 +00:00
|
|
|
inherit fetchurl stdenv readline libtool gmp gawk makeWrapper;
|
2006-10-18 15:04:55 +01:00
|
|
|
};
|
|
|
|
|
2008-11-11 08:53:47 +00:00
|
|
|
io = builderDefsPackage (import ../development/interpreters/io) {
|
|
|
|
inherit sqlite zlib gmp libffi cairo ncurses freetype mesa
|
|
|
|
libpng libtiff libjpeg readline libsndfile libxml2
|
2008-11-11 13:07:09 +00:00
|
|
|
freeglut e2fsprogs libsamplerate pcre libevent editline;
|
2008-11-11 08:53:47 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
kaffe = import ../development/interpreters/kaffe {
|
|
|
|
inherit fetchurl stdenv jikes alsaLib xlibs;
|
|
|
|
};
|
|
|
|
|
|
|
|
lua4 = import ../development/interpreters/lua-4 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
lua5 = import ../development/interpreters/lua-5 {
|
2007-07-17 17:43:06 +01:00
|
|
|
inherit fetchurl stdenv ncurses readline;
|
2006-10-18 15:04:55 +01:00
|
|
|
};
|
|
|
|
|
2008-07-15 10:58:30 +01:00
|
|
|
maude = import ../development/interpreters/maude {
|
2008-11-14 22:53:09 +00:00
|
|
|
inherit fetchurl stdenv flex bison ncurses buddy tecla gmp libsigsegv makeWrapper;
|
2008-11-13 19:35:48 +00:00
|
|
|
};
|
2008-07-18 21:11:02 +01:00
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
octave = import ../development/interpreters/octave {
|
2007-10-27 18:55:13 +01:00
|
|
|
inherit stdenv fetchurl readline ncurses perl flex;
|
2008-04-02 20:55:40 +01:00
|
|
|
g77 = g77_42;
|
2006-10-18 15:04:55 +01:00
|
|
|
};
|
|
|
|
|
2008-12-02 22:55:45 +00:00
|
|
|
# mercurial (hg) bleeding edge version
|
|
|
|
octaveHG = import ../development/interpreters/octave/hg.nix {
|
|
|
|
inherit fetchurl readline ncurses perl flex atlas getConfig glibc;
|
|
|
|
inherit automake autoconf bison gperf lib python gnuplot texinfo texLive; # for dev Version
|
|
|
|
stdenv = overrideGCC stdenv gcc40;
|
|
|
|
g77 = g77_42;
|
|
|
|
inherit (bleedingEdgeRepos) sourceByName;
|
|
|
|
};
|
|
|
|
|
2007-01-23 09:55:25 +00:00
|
|
|
perl = if !stdenv.isLinux then sysPerl else realPerl;
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-10-16 13:41:59 +01:00
|
|
|
perl58 = if !stdenv.isLinux then sysPerl else
|
2008-10-09 16:39:09 +01:00
|
|
|
import ../development/interpreters/perl-5.8 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2008-02-22 14:43:00 +00:00
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
# FIXME: unixODBC needs patching on Darwin (see darwinports)
|
2007-11-23 16:58:42 +00:00
|
|
|
phpOld = import ../development/interpreters/php {
|
|
|
|
inherit stdenv fetchurl flex bison libxml2 apacheHttpd;
|
|
|
|
unixODBC =
|
|
|
|
if stdenv.isDarwin then null else unixODBC;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-06-06 14:03:55 +01:00
|
|
|
php = import ../development/interpreters/php_configurable {
|
|
|
|
inherit
|
|
|
|
stdenv fetchurl lib mkDerivationByConfiguration autoconf automake
|
|
|
|
flex bison apacheHttpd mysql libxml2 # gettext
|
2008-08-31 07:36:56 +01:00
|
|
|
zlib curl gd postgresql openssl pkgconfig;
|
2008-06-06 14:03:55 +01:00
|
|
|
flags = [
|
|
|
|
"xdebug" "mysql" "mysqli" "pdo_mysql" "libxml2" "apxs2" "curl"
|
2008-08-31 07:36:56 +01:00
|
|
|
"postgresql" "bcmath" "gd" "sockets" "curl"
|
2008-06-06 14:03:55 +01:00
|
|
|
];
|
2008-01-03 10:46:18 +00:00
|
|
|
};
|
2007-11-05 21:13:16 +00:00
|
|
|
|
2008-07-17 10:57:47 +01:00
|
|
|
pltScheme = builderDefsPackage (import ../development/interpreters/plt-scheme) {
|
2008-07-18 21:11:02 +01:00
|
|
|
inherit cairo fontconfig freetype libjpeg libpng openssl
|
2008-07-17 10:57:47 +01:00
|
|
|
perl mesa zlib which;
|
2008-07-18 21:11:02 +01:00
|
|
|
inherit (xorg) libX11 libXaw libXft libXrender libICE xproto
|
|
|
|
renderproto pixman libSM libxcb libXext xextproto libXmu
|
2008-07-17 10:57:47 +01:00
|
|
|
libXt;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-07-17 10:57:47 +01:00
|
|
|
|
2008-10-15 21:01:39 +01:00
|
|
|
python = if getConfig ["python" "full"] false then pythonFull else pythonBase;
|
|
|
|
python25 = if getConfig ["python" "full"] false then python25Full else python25Base;
|
|
|
|
pythonBase = python25Base;
|
|
|
|
pythonFull = python25Full;
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-03-17 13:45:50 +00:00
|
|
|
python24 = import ../development/interpreters/python/2.4 {
|
2008-06-06 14:03:55 +01:00
|
|
|
inherit fetchurl stdenv zlib bzip2;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-11-05 08:32:20 +00:00
|
|
|
|
2008-10-15 21:01:39 +01:00
|
|
|
python25Base = composedArgsAndFun (import ../development/interpreters/python/2.5) {
|
2008-04-08 08:37:49 +01:00
|
|
|
inherit fetchurl stdenv zlib bzip2 gdbm;
|
2008-03-17 13:45:50 +00:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
python25Full = python25Base.passthru.function {
|
2008-10-22 23:08:56 +01:00
|
|
|
db4 = if getConfig ["python" "db4Support"] true then db4 else null;
|
|
|
|
sqlite = if getConfig ["python" "sqliteSupport"] true then sqlite else null;
|
|
|
|
readline = if getConfig ["python" "readlineSupport"] true then readline else null;
|
|
|
|
openssl = if getConfig ["python" "opensslSupport"] true then openssl else null;
|
2008-12-01 00:02:25 +00:00
|
|
|
tk = if getConfig ["python" "tkSupport"] true then tk else null;
|
|
|
|
tcl = if getConfig ["python" "tkSupport"] true then tcl else null;
|
|
|
|
libX11 = if getConfig ["python" "tkSupport"] true then xlibs.libX11 else null;
|
|
|
|
xproto = if getConfig ["python" "tkSupport"] true then xlibs.xproto else null;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-03-17 13:45:50 +00:00
|
|
|
|
2008-12-02 12:27:05 +00:00
|
|
|
# new python and lib proposal
|
|
|
|
# - adding a python lib to buildinputs should be enough
|
|
|
|
# (handles .pth files by patching site.py
|
|
|
|
# while introducing NIX_PYTHON_SITES describing list of modules)
|
|
|
|
# - adding pyCheck = "import foo" test scripts to ensure libraries can be imported
|
|
|
|
# - providing pythonWrapper so that you can run python and import the selected libraries
|
|
|
|
# feel free to comment on this (experimental)
|
|
|
|
python25New = recurseIntoAttrs ((import ../development/interpreters/python-new/2.5) pkgs);
|
|
|
|
pythonNew = python25New; # the default python
|
|
|
|
|
2008-03-17 13:45:50 +00:00
|
|
|
pyrex = pyrex095;
|
|
|
|
|
|
|
|
pyrex095 = import ../development/interpreters/pyrex/0.9.5.nix {
|
|
|
|
inherit fetchurl stdenv stringsWithDeps lib builderDefs python;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-11-05 08:32:20 +00:00
|
|
|
|
2008-03-17 13:45:50 +00:00
|
|
|
pyrex096 = import ../development/interpreters/pyrex/0.9.6.nix {
|
|
|
|
inherit fetchurl stdenv stringsWithDeps lib builderDefs python;
|
|
|
|
};
|
2007-11-08 14:34:54 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
Qi = composedArgsAndFun (selectVersion ../development/compilers/qi "9.1") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit clisp stdenv fetchurl builderDefs unzip;
|
|
|
|
};
|
2007-11-08 14:34:54 +00:00
|
|
|
|
2008-02-22 14:43:00 +00:00
|
|
|
realPerl = import ../development/interpreters/perl-5.10 {
|
2008-05-27 08:49:55 +01:00
|
|
|
fetchurl = fetchurlBoot;
|
|
|
|
inherit stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ruby = import ../development/interpreters/ruby {
|
2008-04-11 10:32:27 +01:00
|
|
|
inherit fetchurl stdenv readline ncurses zlib lib openssl;
|
|
|
|
};
|
|
|
|
|
2008-10-05 10:04:30 +01:00
|
|
|
rake = import ../development/ruby-modules/rake {
|
|
|
|
inherit fetchurl stdenv ruby ;
|
|
|
|
};
|
|
|
|
|
|
|
|
rubySqlite3 = import ../development/ruby-modules/sqlite3 {
|
|
|
|
inherit fetchurl stdenv ruby sqlite;
|
|
|
|
};
|
|
|
|
|
2008-05-07 12:24:28 +01:00
|
|
|
rLang = import ../development/interpreters/r-lang {
|
2008-08-07 09:33:03 +01:00
|
|
|
inherit fetchurl stdenv readline perl gfortran libpng zlib;
|
2008-07-23 14:40:03 +01:00
|
|
|
inherit (xorg) libX11 libXt;
|
2008-08-29 14:53:28 +01:00
|
|
|
withBioconductor = getConfig ["rLang" "withBioconductor"] false;
|
2008-05-07 12:24:28 +01:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
rubygems = builderDefsPackage (import ../development/interpreters/ruby/gems.nix) {
|
2008-04-11 10:32:27 +01:00
|
|
|
inherit ruby makeWrapper;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-08-29 14:53:28 +01:00
|
|
|
rq = import ../applications/networking/cluster/rq {
|
2008-10-05 10:04:30 +01:00
|
|
|
inherit fetchurl stdenv sqlite ruby ;
|
2008-08-29 14:53:28 +01:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
spidermonkey = import ../development/interpreters/spidermonkey {
|
|
|
|
inherit fetchurl stdenv readline;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
sysPerl = import ../development/interpreters/sys-perl {
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
tcl = import ../development/interpreters/tcl {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
xulrunnerWrapper = {application, launcher}:
|
|
|
|
import ../development/interpreters/xulrunner/wrapper {
|
2008-09-04 10:29:09 +01:00
|
|
|
inherit stdenv application launcher;
|
2008-10-30 13:13:43 +00:00
|
|
|
xulrunner = xulrunner3;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / MISC
|
2006-10-18 15:04:55 +01:00
|
|
|
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
/*
|
|
|
|
toolbus = import ../development/interpreters/toolbus {
|
|
|
|
inherit stdenv fetchurl atermjava toolbuslib aterm yacc flex;
|
|
|
|
};
|
|
|
|
*/
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
bleedingEdgeRepos = import ../development/misc/bleeding-edge-repos {
|
2008-08-19 13:36:00 +01:00
|
|
|
inherit getConfig fetchdarcs2 fetchurl lib;
|
2008-03-09 00:08:45 +00:00
|
|
|
};
|
2008-03-06 02:46:29 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ecj = import ../development/eclipse/ecj {
|
|
|
|
inherit fetchurl stdenv unzip jre ant;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jdtsdk = import ../development/eclipse/jdt-sdk {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-02-12 11:16:53 +00:00
|
|
|
guileLib = import ../development/guile-modules/guile-lib {
|
2008-03-26 15:20:25 +00:00
|
|
|
inherit fetchurl stdenv guile texinfo;
|
2008-02-12 11:16:53 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
windowssdk = import ../development/misc/windows-sdk {
|
|
|
|
inherit fetchurl stdenv cabextract;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / TOOLS
|
2006-10-18 15:04:55 +01:00
|
|
|
|
|
|
|
|
2008-01-16 10:35:49 +00:00
|
|
|
alex = import ../development/tools/parsing/alex {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal perl;
|
2008-01-16 10:35:49 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
antlr = import ../development/tools/parsing/antlr/antlr-2.7.6.nix {
|
|
|
|
inherit fetchurl stdenv jre;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
antlr3 = import ../development/tools/parsing/antlr {
|
|
|
|
inherit fetchurl stdenv jre;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ant = apacheAnt;
|
|
|
|
apacheAnt = import ../development/tools/build-managers/apache-ant {
|
|
|
|
inherit fetchurl stdenv jdk;
|
|
|
|
name = "ant-" + jdk.name;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
apacheAnt14 = import ../development/tools/build-managers/apache-ant {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
jdk = j2sdk14x;
|
|
|
|
name = "ant-" + j2sdk14x.name;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-07-28 22:29:17 +01:00
|
|
|
autobuild = import ../development/tools/misc/autobuild {
|
|
|
|
inherit fetchurl stdenv makeWrapper perl openssh rsync;
|
|
|
|
};
|
|
|
|
|
2008-07-01 09:31:48 +01:00
|
|
|
autoconf = import ../development/tools/misc/autoconf {
|
2008-06-16 14:15:55 +01:00
|
|
|
inherit fetchurl stdenv perl m4 lzma;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
automake = automake19x;
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
automake17x = import ../development/tools/misc/automake/automake-1.7.x.nix {
|
|
|
|
inherit fetchurl stdenv perl autoconf;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
automake19x = import ../development/tools/misc/automake/automake-1.9.x.nix {
|
|
|
|
inherit fetchurl stdenv perl autoconf;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-12 14:00:26 +00:00
|
|
|
automake110x = import ../development/tools/misc/automake/automake-1.10.x.nix {
|
|
|
|
inherit fetchurl stdenv perl autoconf;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# commented out because it's using the new configuration style proposal which is unstable
|
|
|
|
#avrdude = import ../development/tools/misc/avrdude {
|
|
|
|
# inherit lib fetchurl stdenv flex yacc;
|
|
|
|
#};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
binutils = useFromStdenv "binutils"
|
2007-12-30 22:02:04 +00:00
|
|
|
(import ../development/tools/misc/binutils {
|
2006-10-18 15:04:55 +01:00
|
|
|
inherit fetchurl stdenv noSysDirs;
|
2007-12-30 22:02:04 +00:00
|
|
|
});
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-08-25 14:25:07 +01:00
|
|
|
bison = bison23;
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
bison1875 = import ../development/tools/parsing/bison/bison-1.875.nix {
|
|
|
|
inherit fetchurl stdenv m4;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
bison23 = import ../development/tools/parsing/bison/bison-2.3.nix {
|
|
|
|
inherit fetchurl stdenv m4;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-11-03 18:25:17 +00:00
|
|
|
bison24 = import ../development/tools/parsing/bison/bison-2.4.nix {
|
|
|
|
inherit fetchurl stdenv m4;
|
|
|
|
};
|
|
|
|
|
2008-09-01 16:11:09 +01:00
|
|
|
buildbot = import ../development/tools/build-managers/buildbot {
|
|
|
|
inherit fetchurl stdenv python twisted makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-08-06 21:39:01 +01:00
|
|
|
byacc = import ../development/tools/parsing/byacc {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-12 13:32:37 +00:00
|
|
|
ccache = import ../development/tools/misc/ccache {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ctags = import ../development/tools/misc/ctags {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cmake = import ../development/tools/build-managers/cmake {
|
|
|
|
inherit fetchurl stdenv replace;
|
|
|
|
};
|
2007-07-07 23:31:37 +01:00
|
|
|
|
2008-04-27 19:20:57 +01:00
|
|
|
cproto = import ../development/tools/misc/cproto {
|
|
|
|
inherit fetchurl stdenv flex bison;
|
|
|
|
};
|
|
|
|
|
2008-10-28 08:43:44 +00:00
|
|
|
cflow = import ../development/tools/misc/cflow {
|
|
|
|
inherit fetchurl stdenv gettext emacs;
|
|
|
|
};
|
|
|
|
|
2008-08-25 16:34:14 +01:00
|
|
|
cscope = import ../development/tools/misc/cscope {
|
|
|
|
inherit fetchurl stdenv ncurses pkgconfig emacs;
|
|
|
|
};
|
|
|
|
|
2008-04-14 12:47:26 +01:00
|
|
|
dejagnu = import ../development/tools/misc/dejagnu {
|
|
|
|
inherit fetchurl stdenv expect makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-07-10 17:56:51 +01:00
|
|
|
ddd = import ../development/tools/misc/ddd {
|
|
|
|
inherit fetchurl stdenv lesstif ncurses;
|
2008-07-23 14:40:03 +01:00
|
|
|
inherit (xlibs) libX11 libXt;
|
2008-07-10 17:56:51 +01:00
|
|
|
};
|
|
|
|
|
2008-10-23 15:23:12 +01:00
|
|
|
doxygen = import ../development/tools/documentation/doxygen {
|
|
|
|
inherit fetchurl stdenv graphviz perl flex bison gnumake;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
qt = if getPkgConfig "doxygen" "qt3" true then qt3 else null;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
elfutils = composedArgsAndFun
|
2008-01-31 17:32:28 +00:00
|
|
|
(selectVersion ../development/tools/misc/elfutils "0.131") {
|
2008-01-01 15:44:27 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-03-17 09:41:28 +00:00
|
|
|
};
|
2007-03-21 19:25:58 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
epm = import ../development/tools/misc/epm {
|
|
|
|
inherit fetchurl stdenv rpm;
|
|
|
|
};
|
2007-09-06 16:00:33 +01:00
|
|
|
|
2008-02-26 15:48:14 +00:00
|
|
|
emma = import ../development/tools/analysis/emma {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2008-02-25 14:55:30 +00:00
|
|
|
findbugs = import ../development/tools/analysis/findbugs {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
flex = flex254a;
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-03-20 09:52:40 +00:00
|
|
|
flex2535 = import ../development/tools/parsing/flex/flex-2.5.35.nix {
|
|
|
|
inherit fetchurl stdenv yacc m4;
|
|
|
|
};
|
|
|
|
|
2008-02-16 19:12:55 +00:00
|
|
|
flex2534 = import ../development/tools/parsing/flex/flex-2.5.34.nix {
|
|
|
|
inherit fetchurl stdenv yacc m4;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
flex2533 = import ../development/tools/parsing/flex/flex-2.5.33.nix {
|
|
|
|
inherit fetchurl stdenv yacc m4;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
flex254a = import ../development/tools/parsing/flex/flex-2.5.4a.nix {
|
|
|
|
inherit fetchurl stdenv yacc;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
frown = import ../development/tools/parsing/frown {
|
|
|
|
inherit fetchurl stdenv ghc;
|
|
|
|
};
|
2007-05-09 14:10:31 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
m4 = gnum4;
|
2006-12-13 22:29:40 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gnum4 = import ../development/tools/misc/gnum4 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-07-01 20:50:34 +01:00
|
|
|
gnum4_1411 = import ../development/tools/misc/gnum4/1.4.11.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-07-10 16:19:28 +01:00
|
|
|
gnumake = import ../development/tools/build-managers/gnumake {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
log2xmlSupport = getConfig [ "gnuMake" "log2xmlSupport" ] true;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gnumake380 = import ../development/tools/build-managers/gnumake-3.80 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gperf = import ../development/tools/misc/gperf {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-07-22 14:01:30 +01:00
|
|
|
# used to bootstrap ghc with
|
|
|
|
haddockboot = lowPrio (appendToName "boot" (import ../development/tools/documentation/haddock/boot.nix {
|
|
|
|
inherit gmp;
|
|
|
|
cabal = cabalboot;
|
|
|
|
}));
|
|
|
|
|
|
|
|
# old version of haddock, still more stable than 2.0
|
|
|
|
haddock09 = import ../development/tools/documentation/haddock/haddock-0.9.nix {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal;
|
2008-01-19 17:05:54 +00:00
|
|
|
};
|
|
|
|
|
2008-07-22 14:01:30 +01:00
|
|
|
# does not compile with ghc-6.8.3
|
2008-10-27 10:25:50 +00:00
|
|
|
haddock210 = lowPrio (import ../development/tools/documentation/haddock/haddock-2.1.0.nix {
|
2008-07-22 14:01:30 +01:00
|
|
|
cabal = cabal682;
|
2008-10-27 10:25:50 +00:00
|
|
|
});
|
2008-07-22 14:01:30 +01:00
|
|
|
|
2008-03-21 18:07:02 +00:00
|
|
|
hsc2hs = import ../development/tools/misc/hsc2hs {
|
2008-03-21 01:24:43 +00:00
|
|
|
inherit bleedingEdgeRepos stdenv;
|
|
|
|
ghc = ghcsAndLibs.ghc68.ghc;
|
|
|
|
libs = with (ghc68extraLibs ghcsAndLibs.ghc68 // ghcsAndLibs.ghc68.core_libs); [ base directory process cabal_darcs ];
|
|
|
|
};
|
|
|
|
|
2008-02-15 16:30:33 +00:00
|
|
|
guileLint = import ../development/tools/guile/guile-lint {
|
|
|
|
inherit fetchurl stdenv guile;
|
|
|
|
};
|
|
|
|
|
2008-04-09 08:56:52 +01:00
|
|
|
gwrap = import ../development/tools/guile/g-wrap {
|
|
|
|
inherit fetchurl stdenv guile libffi pkgconfig guileLib;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
|
|
|
happy = import ../development/tools/parsing/happy {
|
|
|
|
inherit fetchurl stdenv perl ghc;
|
|
|
|
};
|
|
|
|
*/
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-01-22 22:43:38 +00:00
|
|
|
happy = import ../development/tools/parsing/happy/happy-1.17.nix {
|
|
|
|
inherit cabal perl;
|
2008-01-17 18:21:50 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
help2man = import ../development/tools/misc/help2man {
|
|
|
|
inherit fetchurl stdenv perl gettext perlLocaleGettext;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
iconnamingutils = import ../development/tools/misc/icon-naming-utils {
|
|
|
|
inherit fetchurl stdenv perl perlXMLSimple;
|
|
|
|
};
|
2007-03-05 18:52:31 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
indent = composedArgsAndFun (selectVersion ../development/tools/misc/indent "2.2.9") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv builderDefs;
|
|
|
|
};
|
2007-11-25 18:35:33 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jikespg = import ../development/tools/parsing/jikespg {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kcachegrind = import ../development/tools/misc/kcachegrind {
|
|
|
|
inherit fetchurl stdenv kdelibs zlib perl expat libpng libjpeg;
|
|
|
|
inherit (xlibs) libX11 libXext libSM;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-02-26 14:15:37 +00:00
|
|
|
lcov = import ../development/tools/analysis/lcov {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libtool = import ../development/tools/misc/libtool {
|
|
|
|
inherit fetchurl stdenv perl m4;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-11-03 10:15:37 +00:00
|
|
|
libtool2 = import ../development/tools/misc/libtool/libtool2.nix {
|
|
|
|
inherit fetchurl stdenv lzma perl m4;
|
|
|
|
};
|
|
|
|
|
2008-08-04 15:37:51 +01:00
|
|
|
libtoolOld = lowPrio (import ../development/tools/misc/libtool/old.nix {
|
|
|
|
inherit fetchurl stdenv perl m4;
|
|
|
|
});
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lsof = import ../development/tools/misc/lsof {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-06-17 23:44:30 +01:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ltrace = composedArgsAndFun (selectVersion ../development/tools/misc/ltrace "0.5-3deb") {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv builderDefs stringsWithDeps lib;
|
2008-11-04 21:24:10 +00:00
|
|
|
elfutils = elfutils.passthru.function {version = "0.127";};
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-11-03 08:19:00 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mk = import ../development/tools/build-managers/mk {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
noweb = import ../development/tools/literate-programming/noweb {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-06-04 22:23:30 +01:00
|
|
|
oprofile = import ../development/tools/profiling/oprofile {
|
|
|
|
inherit fetchurl stdenv binutils popt;
|
|
|
|
inherit makeWrapper gawk which gnugrep;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
patchelf = useFromStdenv "patchelf"
|
2007-12-30 22:02:04 +00:00
|
|
|
(import ../development/tools/misc/patchelf {
|
2007-11-05 23:59:55 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
});
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-06-06 13:26:01 +01:00
|
|
|
pmccabe = import ../development/tools/misc/pmccabe {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
/**
|
|
|
|
* pkgconfig is optionally taken from the stdenv to allow bootstrapping
|
|
|
|
* of glib and pkgconfig itself on MinGW.
|
|
|
|
*/
|
2008-02-03 13:19:16 +00:00
|
|
|
pkgconfig = useFromStdenv "pkgconfig"
|
2007-12-30 22:02:04 +00:00
|
|
|
(import ../development/tools/misc/pkgconfig {
|
2006-10-18 15:04:55 +01:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
});
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# couldn't find the source yet
|
|
|
|
selenium_rc_binary = import ../development/tools/selenium/remote-control {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2007-12-03 14:33:54 +00:00
|
|
|
|
2008-09-01 16:11:09 +01:00
|
|
|
scons = import ../development/tools/build-managers/scons {
|
|
|
|
inherit fetchurl stdenv python makeWrapper;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00: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-10-18 15:04:55 +01:00
|
|
|
|
2008-01-29 09:37:15 +00:00
|
|
|
sdf24 = import ../development/tools/parsing/sdf/sdf2-bundle-2.4.nix {
|
|
|
|
inherit fetchurl getopt pkgconfig;
|
|
|
|
aterm = aterm25;
|
|
|
|
# Note: sdf2-bundle currently requires GNU make 3.80; remove
|
|
|
|
# explicit dependency when this is fixed.
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
};
|
|
|
|
|
2008-08-22 19:33:52 +01:00
|
|
|
sparse = import ../development/tools/analysis/sparse {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
};
|
|
|
|
|
2008-07-11 10:13:34 +01:00
|
|
|
splint = import ../development/tools/analysis/splint {
|
|
|
|
inherit fetchurl stdenv flex;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
strace = import ../development/tools/misc/strace {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
swig = import ../development/tools/misc/swig {
|
|
|
|
inherit fetchurl stdenv perl python;
|
|
|
|
perlSupport = true;
|
|
|
|
pythonSupport = true;
|
|
|
|
javaSupport = false;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-10-16 12:01:10 +01:00
|
|
|
swftools = import ../tools/video/swftools {
|
|
|
|
inherit fetchurl stdenv x264 zlib libjpeg freetype giflib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
swigWithJava = lowPrio (appendToName "with-java" (import ../development/tools/misc/swig {
|
|
|
|
inherit fetchurl stdenv jdk;
|
|
|
|
perlSupport = false;
|
|
|
|
pythonSupport = false;
|
|
|
|
javaSupport = true;
|
|
|
|
}));
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-21 15:34:56 +00:00
|
|
|
texinfo49 = import ../development/tools/misc/texinfo/4.9.nix {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
texinfo = import ../development/tools/misc/texinfo {
|
2008-09-22 22:21:39 +01:00
|
|
|
inherit fetchurl stdenv ncurses lzma;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
uisp = import ../development/tools/misc/uisp {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
uuagc = import ../development/tools/haskell/uuagc {
|
2008-01-23 08:36:03 +00:00
|
|
|
inherit cabal uulib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gdb = import ../development/tools/misc/gdb {
|
2008-09-03 14:12:23 +01:00
|
|
|
inherit fetchurl stdenv ncurses gmp mpfr texinfo;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-02-26 14:15:37 +00:00
|
|
|
valgrind = import ../development/tools/analysis/valgrind {
|
2008-06-03 21:56:12 +01:00
|
|
|
inherit fetchurl stdenv perl gdb;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-05-25 21:43:56 +01:00
|
|
|
xxdiff = builderDefsPackage (selectVersion ../development/tools/misc/xxdiff "3.2") {
|
|
|
|
flex = flex2535;
|
|
|
|
qt = qt3;
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit pkgconfig makeWrapper bison python;
|
2008-05-25 21:43:56 +01:00
|
|
|
inherit (xlibs) libXext libX11;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-25 21:43:56 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
yacc = bison;
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / LIBRARIES
|
2007-02-22 16:07:51 +00:00
|
|
|
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
a52dec = import ../development/libraries/a52dec {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
aalib = import ../development/libraries/aalib {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2006-06-02 10:56:10 +01:00
|
|
|
|
2008-05-19 16:12:03 +01:00
|
|
|
acl = useFromStdenv "acl"
|
|
|
|
(import ../development/libraries/acl {
|
2008-08-04 15:37:51 +01:00
|
|
|
inherit stdenv fetchurl gettext attr;
|
|
|
|
libtool = libtoolOld;
|
2008-05-19 16:12:03 +01:00
|
|
|
});
|
2007-12-23 15:09:12 +00:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
adns = selectVersion ../development/libraries/adns "1.4" {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
static = getPkgConfig "adns" "static" (stdenv ? isStatic || stdenv ? isDietLibC);
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
agg = import ../development/libraries/agg {
|
2008-03-10 09:48:17 +00:00
|
|
|
inherit fetchurl stdenv autoconf automake libtool pkgconfig
|
|
|
|
freetype SDL;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-11-22 12:05:36 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
apr = import ../development/libraries/apr {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
aprutil = import ../development/libraries/apr-util {
|
|
|
|
inherit fetchurl stdenv apr expat db4;
|
|
|
|
bdbSupport = true;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
arts = import ../development/libraries/arts {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
inherit kdelibs zlib libjpeg libpng perl;
|
|
|
|
qt = qt3;
|
|
|
|
inherit (gnome) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
aspell = import ../development/libraries/aspell {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
2007-12-23 15:09:12 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
aspellDicts = recurseIntoAttrs (import ../development/libraries/aspell/dictionaries.nix {
|
|
|
|
inherit fetchurl stdenv aspell which;
|
|
|
|
});
|
2007-12-23 15:09:12 +00:00
|
|
|
|
2008-08-29 12:48:44 +01:00
|
|
|
aterm = aterm24;
|
|
|
|
|
|
|
|
aterm23 = import ../development/libraries/aterm/2.3.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
aterm24 = lowPrio (import ../development/libraries/aterm/2.4.nix {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
aterm242fixes = import ../development/libraries/aterm/2.4.2-fixes.nix {
|
2008-06-29 18:07:23 +01:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-11-22 12:05:36 +00:00
|
|
|
|
2008-08-29 12:48:44 +01:00
|
|
|
aterm25 = import ../development/libraries/aterm/2.5.nix {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-06-02 10:56:10 +01:00
|
|
|
|
2008-08-29 12:48:44 +01:00
|
|
|
aterm27 = lowPrio (import ../development/libraries/aterm/2.7.nix {
|
2008-01-29 09:32:56 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-08-29 12:48:44 +01:00
|
|
|
});
|
2008-01-29 09:32:56 +00:00
|
|
|
|
2008-05-20 10:23:18 +01:00
|
|
|
attr = useFromStdenv "attr"
|
2008-05-19 16:12:03 +01:00
|
|
|
(import ../development/libraries/attr {
|
2008-08-04 15:37:51 +01:00
|
|
|
inherit stdenv fetchurl gettext;
|
|
|
|
libtool = libtoolOld;
|
2008-05-19 16:12:03 +01:00
|
|
|
});
|
2004-01-24 22:50:47 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
axis = import ../development/libraries/axis {
|
|
|
|
inherit fetchurl stdenv;
|
2008-04-04 16:11:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
babl = import ../development/libraries/babl {
|
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-05-05 00:36:28 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
beecrypt = import ../development/libraries/beecrypt {
|
|
|
|
inherit fetchurl stdenv m4;
|
|
|
|
};
|
2006-04-26 15:47:16 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
boehmgc = import ../development/libraries/boehm-gc {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-02-02 17:07:07 +00:00
|
|
|
|
2008-11-16 12:35:59 +00:00
|
|
|
boostVersionChoice = version: selectVersion ../development/libraries/boost version {
|
2008-08-25 11:00:46 +01:00
|
|
|
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2008-11-16 12:35:59 +00:00
|
|
|
boost = boostVersionChoice "1.37.0";
|
2006-11-14 15:55:57 +00:00
|
|
|
|
2008-07-15 10:58:30 +01:00
|
|
|
buddy = import ../development/libraries/buddy {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cairo = import ../development/libraries/cairo {
|
|
|
|
inherit fetchurl stdenv pkgconfig x11 fontconfig freetype zlib libpng;
|
2008-04-23 11:48:10 +01:00
|
|
|
inherit (xlibs) pixman;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-02-03 13:18:15 +00:00
|
|
|
cairomm = import ../development/libraries/cairomm {
|
|
|
|
inherit fetchurl stdenv pkgconfig cairo x11 fontconfig freetype;
|
|
|
|
};
|
|
|
|
|
2008-11-30 15:05:43 +00:00
|
|
|
chipmunk = builderDefsPackage (import ../development/libraries/chipmunk) {
|
|
|
|
inherit cmake freeglut mesa;
|
|
|
|
inherit (xlibs) libX11 xproto inputproto libXi libXmu;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
chmlib = import ../development/libraries/chmlib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-05-13 15:22:24 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cil = import ../development/libraries/cil {
|
|
|
|
inherit stdenv fetchurl ocaml perl;
|
|
|
|
};
|
2007-10-23 17:33:11 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cilaterm = import ../development/libraries/cil-aterm {
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
inherit fetchurl perl ocaml;
|
|
|
|
};
|
2006-02-02 17:07:07 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
clanlib = import ../development/libraries/clanlib {
|
|
|
|
inherit fetchurl stdenv zlib libpng libjpeg libvorbis libogg mesa;
|
|
|
|
inherit (xlibs) libX11 xf86vidmodeproto libXmu libXxf86vm;
|
|
|
|
};
|
2005-11-22 12:05:36 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
clearsilver = import ../development/libraries/clearsilver {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
2004-11-19 17:47:17 +00:00
|
|
|
|
2008-08-19 06:54:09 +01:00
|
|
|
clppcre = builderDefsPackage (import ../development/libraries/cl-ppcre) {
|
|
|
|
};
|
2008-08-25 14:25:07 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cluceneCore = (import ../development/libraries/clucene-core) {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
coredumper = import ../development/libraries/coredumper {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-06-12 16:35:57 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ctl = import ../development/libraries/ctl {
|
|
|
|
inherit fetchurl stdenv ilmbase;
|
|
|
|
};
|
2004-08-23 11:44:21 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cppunit = import ../development/libraries/cppunit {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-09-11 23:39:06 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cracklib = import ../development/libraries/cracklib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-02-26 23:45:19 +00:00
|
|
|
|
2008-07-29 15:26:03 +01:00
|
|
|
cryptopp = import ../development/libraries/crypto++ {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cyrus_sasl = import ../development/libraries/cyrus-sasl {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv openssl db4 gettext;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2004-01-24 23:46:00 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
db4 = db45;
|
2007-07-22 19:22:46 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
db44 = import ../development/libraries/db4/db4-4.4.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-08-23 18:06:50 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
db45 = import ../development/libraries/db4/db4-4.5.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-02 20:41:06 +00:00
|
|
|
dbus = import ../development/libraries/dbus {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig expat;
|
2008-03-04 13:30:34 +00:00
|
|
|
inherit (xlibs) libX11 libICE libSM;
|
|
|
|
useX11 = true; # !!! `false' doesn't build
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
dbus_glib = import ../development/libraries/dbus-glib {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext dbus expat;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
dclib = import ../development/libraries/dclib {
|
|
|
|
inherit fetchurl stdenv libxml2 openssl bzip2;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
directfb = import ../development/libraries/directfb {
|
|
|
|
inherit fetchurl stdenv perl;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-07-31 13:36:47 +01:00
|
|
|
editline = import ../development/libraries/editline {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2008-02-18 20:51:07 +00:00
|
|
|
enchant = selectVersion ../development/libraries/enchant "1.3.0" {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv aspell pkgconfig;
|
|
|
|
inherit (gnome) glib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
exiv2 = import ../development/libraries/exiv2 {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-08-05 14:54:42 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
expat = import ../development/libraries/expat {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-08-10 12:07:50 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
facile = import ../development/libraries/facile {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
# Actually, we don't need this version but we need native-code compilation
|
|
|
|
ocaml = builtins.getAttr "3.10.0" ocaml_alts;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-05 21:25:47 +00:00
|
|
|
|
2008-10-14 15:01:38 +01:00
|
|
|
faac = import ../development/libraries/faac {
|
|
|
|
inherit fetchurl stdenv autoconf automake libtool;
|
|
|
|
};
|
|
|
|
|
|
|
|
faad2 = import ../development/libraries/faad2 {
|
|
|
|
inherit fetchurl stdenv autoconf automake libtool;
|
|
|
|
};
|
|
|
|
|
2008-02-08 10:54:56 +00:00
|
|
|
fcgi = import ../development/libraries/fcgi {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ffmpeg = import ../development/libraries/ffmpeg {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-10-01 16:09:29 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ffmpeg_svn = import ../development/libraries/ffmpeg_svn_snapshot {
|
2008-02-10 23:00:58 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
fftw = import ../development/libraries/fftw {
|
|
|
|
inherit fetchurl stdenv builderDefs stringsWithDeps;
|
2008-10-14 14:59:56 +01:00
|
|
|
singlePrecision = false;
|
|
|
|
};
|
|
|
|
fftwSinglePrec = import ../development/libraries/fftw {
|
|
|
|
inherit fetchurl stdenv builderDefs stringsWithDeps;
|
|
|
|
singlePrecision = true;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-10-01 16:11:38 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
fltk20 = (import ../development/libraries/fltk) {
|
2008-01-16 03:29:56 +00:00
|
|
|
inherit mkDerivationByConfiguration x11 lib;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv mesa mesaHeaders libpng libjpeg zlib ;
|
2008-10-26 20:29:47 +00:00
|
|
|
inherit (xlibs) inputproto libXi;
|
2007-12-30 22:02:04 +00:00
|
|
|
flags = [ "useNixLibs" "threads" "shared" "gl" ];
|
|
|
|
};
|
2006-10-13 13:58:13 +01:00
|
|
|
|
2008-01-28 19:46:59 +00:00
|
|
|
cfitsio = import ../development/libraries/cfitsio {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
fontconfig = import ../development/libraries/fontconfig {
|
|
|
|
inherit fetchurl stdenv freetype expat;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2008-07-03 15:27:19 +01:00
|
|
|
makeFontsConf = let fontconfig_ = fontconfig; in {fontconfig ? fontconfig_, fontDirectories}:
|
|
|
|
import ../development/libraries/fontconfig/make-fonts-conf.nix {
|
|
|
|
inherit runCommand libxslt fontconfig fontDirectories;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
freealut = import ../development/libraries/freealut {
|
|
|
|
inherit fetchurl stdenv openal;
|
|
|
|
};
|
2007-09-20 20:40:22 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
freeglut = assert mesaSupported; import ../development/libraries/freeglut {
|
|
|
|
inherit fetchurl stdenv x11 mesa;
|
|
|
|
};
|
2007-03-04 21:28:24 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
freetype = import ../development/libraries/freetype {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-03-04 21:28:24 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
fribidi = import ../development/libraries/fribidi {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-08-24 12:26:26 +01:00
|
|
|
|
2008-01-28 19:44:39 +00:00
|
|
|
fam = gamin;
|
|
|
|
|
2008-01-28 19:41:55 +00:00
|
|
|
gamin = import ../development/libraries/gamin {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv python pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
2008-01-28 19:41:55 +00:00
|
|
|
};
|
|
|
|
|
2008-04-07 00:18:25 +01:00
|
|
|
gdbm = import ../development/libraries/gdbm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-04-04 21:57:09 +01:00
|
|
|
gegl = import ../development/libraries/gegl {
|
|
|
|
inherit fetchurl stdenv libpng pkgconfig babl;
|
|
|
|
openexr = openexr_1_6_1;
|
|
|
|
# avocodec avformat librsvg
|
|
|
|
inherit cairo libjpeg librsvg;
|
2008-10-10 00:21:39 +01:00
|
|
|
inherit (gtkLibs) pango glib gtk;
|
2008-04-04 21:57:09 +01:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
geos = import ../development/libraries/geos {
|
2008-01-16 03:29:56 +00:00
|
|
|
inherit fetchurl fetchsvn stdenv mkDerivationByConfiguration autoconf automake libtool swig which lib;
|
2007-12-30 22:02:04 +00:00
|
|
|
use_svn = stdenv.system == "x86_64-linux";
|
|
|
|
python = python;
|
2008-06-18 23:48:34 +01:00
|
|
|
# optional features:
|
2007-12-30 22:02:04 +00:00
|
|
|
# python / ruby support
|
|
|
|
};
|
2006-11-14 22:23:33 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
gettext = composedArgsAndFun (selectVersion ../development/libraries/gettext "0.17") {
|
2008-01-28 19:30:57 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gd = import ../development/libraries/gd {
|
|
|
|
inherit fetchurl stdenv zlib libpng freetype libjpeg fontconfig;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gdal = stdenv.mkDerivation {
|
|
|
|
name = "gdal-1.4.2";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://download.osgeo.org/gdal/gdal-1.4.2.tar.gz;
|
|
|
|
sha256 = "1vl8ym9y7scm0yd4vghjfqims69b9h1gn9l4zvy2jyglh35p8vpf";
|
|
|
|
};
|
|
|
|
};
|
2007-10-12 21:27:15 +01:00
|
|
|
|
2008-01-16 02:20:46 +00:00
|
|
|
glew = import ../development/libraries/glew {
|
2008-01-16 10:28:47 +00:00
|
|
|
inherit fetchurl stdenv mesa x11 libtool;
|
2008-01-16 02:20:46 +00:00
|
|
|
inherit (xlibs) libXmu libXi;
|
|
|
|
};
|
|
|
|
|
2008-04-04 17:58:19 +01:00
|
|
|
# don't know wether this newer version breaks anything..
|
|
|
|
# not replacing the existing one.
|
|
|
|
glib214 = import ../development/libraries/glib {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext;
|
|
|
|
};
|
|
|
|
|
2008-02-03 13:19:16 +00:00
|
|
|
glibc = useFromStdenv "glibc"
|
2007-12-01 20:04:14 +00:00
|
|
|
(import ../development/libraries/glibc-2.7 {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
|
|
|
#installLocales = false;
|
|
|
|
});
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-07-08 00:11:53 +01:00
|
|
|
glibcUnstable = lowPrio (import ../development/libraries/glibc-2.8 {
|
|
|
|
inherit fetchurl stdenv kernelHeaders;
|
|
|
|
installLocales = getPkgConfig "glibc" "locales" false;
|
|
|
|
});
|
|
|
|
|
2008-06-27 19:26:19 +01:00
|
|
|
glibc_multi =
|
|
|
|
assert system == "x86_64-linux";
|
|
|
|
runCommand "${glibc.name}-multi"
|
|
|
|
{ glibc64 = glibc;
|
|
|
|
glibc32 = (import ./all-packages.nix {system = "i686-linux";}).glibc;
|
|
|
|
}
|
|
|
|
''
|
|
|
|
ensureDir $out
|
|
|
|
ln -s $glibc64/* $out/
|
2008-06-28 16:22:23 +01:00
|
|
|
|
2008-06-27 19:26:19 +01:00
|
|
|
rm $out/lib $out/lib64
|
|
|
|
ensureDir $out/lib
|
|
|
|
ln -s $glibc64/lib/* $out/lib
|
|
|
|
ln -s $glibc32/lib $out/lib/32
|
|
|
|
ln -s lib $out/lib64
|
|
|
|
|
|
|
|
rm $out/include
|
|
|
|
cp -rs $glibc32/include $out
|
|
|
|
chmod -R u+w $out/include
|
|
|
|
cp -rsf $glibc64/include $out
|
|
|
|
''; # */
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gmime = import ../development/libraries/gmime {
|
|
|
|
inherit fetchurl stdenv pkgconfig zlib;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-04-21 16:20:49 +01:00
|
|
|
gmm = import ../development/libraries/gmm {
|
|
|
|
inherit fetchurl stdenv;
|
2008-06-18 23:48:34 +01:00
|
|
|
};
|
2008-04-21 16:20:49 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gmp = import ../development/libraries/gmp {
|
|
|
|
inherit fetchurl stdenv m4;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-12-02 15:13:31 +00:00
|
|
|
goocanvas = import ../development/libraries/goocanvas {
|
2008-12-02 12:28:13 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig cairo;
|
|
|
|
inherit (gnome) gtk glib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
#GMP ex-satellite, so better keep it near gmp
|
|
|
|
mpfr = import ../development/libraries/mpfr {
|
|
|
|
inherit fetchurl stdenv gmp;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-19 21:46:01 +00:00
|
|
|
gst_all = recurseIntoAttrs (import ../development/libraries/gstreamer {
|
|
|
|
inherit lib selectVersion stdenv fetchurl perl bison pkgconfig libxml2
|
2008-02-22 03:06:12 +00:00
|
|
|
python alsaLib cdparanoia libogg libvorbis libtheora freetype liboil
|
|
|
|
libjpeg zlib speex libpng libdv aalib cairo libcaca flac hal libiec61883
|
2008-11-19 21:46:01 +00:00
|
|
|
dbus libavc1394 ladspaH taglib bzip2 which;
|
|
|
|
flex = flex2535;
|
2008-02-22 03:06:12 +00:00
|
|
|
inherit (xorg) libX11 libXv libXext;
|
|
|
|
inherit (gtkLibs) glib pango gtk;
|
2008-11-19 21:46:01 +00:00
|
|
|
inherit (gnome) gnomevfs /* <- only passed for the no longer used older versions
|
|
|
|
it is depreceated and didn't build on amd64 due to samba dependenccy */ gtkdoc;
|
|
|
|
});
|
2008-02-22 03:06:12 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gnet = import ../development/libraries/gnet {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gnutls = import ../development/libraries/gnutls {
|
2008-06-13 12:46:39 +01:00
|
|
|
inherit fetchurl stdenv libgcrypt zlib lzo guile;
|
|
|
|
guileBindings = getConfig ["gnutls" "guile"] false;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gpgme = import ../development/libraries/gpgme {
|
2008-01-28 19:46:13 +00:00
|
|
|
inherit fetchurl stdenv libgpgerror pkgconfig pth gnupg gnupg2;
|
2008-05-20 15:25:09 +01:00
|
|
|
inherit (gtkLibs) glib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# gnu scientific library
|
|
|
|
gsl = import ../development/libraries/gsl {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-03-07 15:43:43 +00:00
|
|
|
gtkLibs = recurseIntoAttrs gtkLibs212;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-03 13:17:07 +00:00
|
|
|
gtkLibs1x = import ../development/libraries/gtk-libs/1.x {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv x11 libtiff libjpeg libpng;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-03 13:17:07 +00:00
|
|
|
gtkLibs210 = import ../development/libraries/gtk-libs/2.10 {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
2008-02-03 13:18:37 +00:00
|
|
|
libtiff libjpeg libpng cairo libsigcxx cairomm;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libXinerama libXrandr;
|
|
|
|
xineramaSupport = true;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-03-07 15:43:43 +00:00
|
|
|
gtkLibs212 = import ../development/libraries/gtk-libs/2.12 {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
2008-02-03 13:18:37 +00:00
|
|
|
libtiff libjpeg libpng cairo libsigcxx cairomm;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libXinerama libXrandr;
|
|
|
|
xineramaSupport = true;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
|
|
|
inherit (gnome) gtk;
|
|
|
|
gtksharp = gtksharp2;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gtksharp1 = import ../development/libraries/gtk-sharp-1 {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeui libgnomeprint
|
2007-12-30 22:02:04 +00:00
|
|
|
libgnomeprintui GConf;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gtksharp2 = import ../development/libraries/gtk-sharp-2 {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeui libgnomeprint
|
2007-12-30 22:02:04 +00:00
|
|
|
libgnomeprintui GConf gnomepanel;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gtksourceviewsharp = import ../development/libraries/gtksourceview-sharp {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
|
|
|
inherit (gnome) gtksourceview;
|
|
|
|
gtksharp = gtksharp2;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gtkspell = import ../development/libraries/gtkspell {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit aspell;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-01-28 19:44:39 +00:00
|
|
|
# TODO : Add MIT Kerberos and let admin choose.
|
|
|
|
kerberos = heimdal;
|
|
|
|
|
2008-01-28 19:41:25 +00:00
|
|
|
heimdal = import ../development/libraries/kerberos/heimdal.nix {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv readline db4 openssl openldap cyrus_sasl;
|
2008-01-28 19:41:25 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
hsqldb = import ../development/libraries/java/hsqldb {
|
|
|
|
inherit stdenv fetchurl unzip;
|
|
|
|
};
|
2007-10-01 16:12:41 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
icu = import ../development/libraries/icu {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-01-25 00:50:00 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
id3lib = import ../development/libraries/id3lib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-11-14 23:05:11 +00:00
|
|
|
|
2008-02-10 17:35:03 +00:00
|
|
|
ilbc = import ../development/libraries/ilbc {
|
|
|
|
inherit stdenv msilbc;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ilmbase = import ../development/libraries/ilmbase {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-12-19 18:56:31 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
imlib = import ../development/libraries/imlib {
|
|
|
|
inherit fetchurl stdenv libjpeg libtiff libungif libpng;
|
|
|
|
inherit (xlibs) libX11 libXext xextproto;
|
|
|
|
};
|
2007-10-22 01:51:40 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
imlib2 = import ../development/libraries/imlib2 {
|
|
|
|
inherit fetchurl stdenv x11 libjpeg libtiff libungif libpng bzip2;
|
|
|
|
};
|
2007-10-29 10:52:04 +00:00
|
|
|
|
2008-01-28 19:47:23 +00:00
|
|
|
indilib = import ../development/libraries/indilib {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv cfitsio libusb zlib;
|
2008-01-28 19:47:23 +00:00
|
|
|
};
|
|
|
|
|
2008-01-28 19:45:19 +00:00
|
|
|
iniparser = import ../development/libraries/iniparser {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-11-26 14:38:05 +00:00
|
|
|
intltool = composedArgsAndFun (selectVersion ../development/tools/misc/intltool "0.40.5") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv lib builderDefs stringsWithDeps
|
|
|
|
perl perlXMLParser;
|
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2008-01-28 19:41:03 +00:00
|
|
|
jasper = import ../development/libraries/jasper {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv unzip libjpeg freeglut mesa;
|
|
|
|
inherit (xlibs) xproto libX11 libICE libXmu libXi libXext libXt;
|
2008-01-28 19:41:03 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lablgtk = import ../development/libraries/lablgtk {
|
|
|
|
inherit fetchurl stdenv ocaml pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
2008-06-11 07:12:18 +01:00
|
|
|
inherit (gnome) libgnomecanvas;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-05-09 16:56:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lcms = import ../development/libraries/lcms {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-05-14 22:47:11 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lesstif = import ../development/libraries/lesstif {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXp libXau;
|
|
|
|
};
|
2007-04-18 14:47:35 +01:00
|
|
|
|
2008-10-06 16:11:36 +01:00
|
|
|
lesstif93 = import ../development/libraries/lesstif-0.93 {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXp libXau;
|
|
|
|
};
|
|
|
|
|
2008-06-08 04:56:32 +01:00
|
|
|
lib3ds = import ../development/libraries/lib3ds {
|
|
|
|
inherit fetchurl stdenv unzip;
|
2008-06-18 23:48:34 +01:00
|
|
|
};
|
2008-06-08 04:56:32 +01:00
|
|
|
|
2008-02-04 14:37:15 +00:00
|
|
|
libaal = import ../development/libraries/libaal {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-11 21:02:38 +00:00
|
|
|
libao = import ../development/libraries/libao {
|
|
|
|
inherit stdenv fetchurl pkgconfig;
|
|
|
|
};
|
|
|
|
|
2008-02-18 20:52:40 +00:00
|
|
|
libarchive = selectVersion ../development/libraries/libarchive "2.4.12" {
|
|
|
|
inherit fetchurl stdenv zlib bzip2 e2fsprogs sharutils;
|
2008-01-28 19:46:38 +00:00
|
|
|
};
|
|
|
|
|
2008-01-28 19:43:37 +00:00
|
|
|
libassuan = import ../development/libraries/libassuan {
|
|
|
|
inherit fetchurl stdenv pth;
|
|
|
|
};
|
|
|
|
|
2008-01-13 15:21:21 +00:00
|
|
|
libavc1394 = import ../development/libraries/libavc1394 {
|
|
|
|
inherit fetchurl stdenv pkgconfig libraw1394;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libcaca = import ../development/libraries/libcaca {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2006-01-02 14:24:36 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libcdaudio = import ../development/libraries/libcdaudio {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-02 17:42:19 +00:00
|
|
|
|
2008-03-05 09:10:23 +00:00
|
|
|
libcddb = import ../development/libraries/libcddb {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
libcdio = import ../development/libraries/libcdio {
|
2008-08-29 12:31:16 +01:00
|
|
|
inherit fetchurl stdenv libcddb pkgconfig ncurses help2man;
|
2008-03-05 09:10:23 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libcm = assert mesaSupported; import ../development/libraries/libcm {
|
|
|
|
inherit fetchurl stdenv pkgconfig xlibs mesa;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2008-11-15 17:54:09 +00:00
|
|
|
libcv = builderDefsPackage (import ../development/libraries/libcv) {
|
|
|
|
inherit libtiff libjpeg libpng pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libdaemon = import ../development/libraries/libdaemon {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-09-01 19:26:13 +01:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
libdbi = composedArgsAndFun (selectVersion ../development/libraries/libdbi "0.8.2") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit stdenv fetchurl builderDefs;
|
|
|
|
};
|
2006-06-21 22:05:39 +01:00
|
|
|
|
2008-08-25 14:25:07 +01:00
|
|
|
libdbiDriversBase = composedArgsAndFun
|
|
|
|
(selectVersion ../development/libraries/libdbi-drivers "0.8.2-1")
|
2008-08-14 23:04:30 +01:00
|
|
|
{
|
|
|
|
inherit stdenv fetchurl builderDefs libdbi;
|
|
|
|
};
|
2007-09-04 10:38:52 +01:00
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
libdbiDrivers = libdbiDriversBase.passthru.function {
|
2008-02-25 03:16:07 +00:00
|
|
|
inherit sqlite mysql;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2008-01-10 13:37:32 +00:00
|
|
|
libdv = import ../development/libraries/libdv {
|
2008-01-16 09:57:25 +00:00
|
|
|
inherit fetchurl stdenv lib mkDerivationByConfiguration;
|
2008-01-10 13:37:32 +00:00
|
|
|
};
|
2007-08-18 17:20:14 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libdrm = import ../development/libraries/libdrm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-02 22:25:26 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libdvdcss = import ../development/libraries/libdvdcss {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libdvdnav = import ../development/libraries/libdvdnav {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-12-13 22:29:40 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libdvdread = import ../development/libraries/libdvdread {
|
|
|
|
inherit fetchurl stdenv libdvdcss;
|
|
|
|
};
|
2007-10-27 18:55:13 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libevent = import ../development/libraries/libevent {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-01-22 19:09:49 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libexif = import ../development/libraries/libexif {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
2007-11-08 17:48:52 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
libextractor = composedArgsAndFun (selectVersion ../development/libraries/libextractor "0.5.18")
|
2007-12-30 22:02:04 +00:00
|
|
|
{
|
|
|
|
inherit fetchurl stdenv builderDefs zlib;
|
|
|
|
};
|
2006-03-14 18:20:21 +00:00
|
|
|
|
2008-04-09 08:40:48 +01:00
|
|
|
libffi = import ../development/libraries/libffi {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libgcrypt = import ../development/libraries/libgcrypt {
|
|
|
|
inherit fetchurl stdenv libgpgerror;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libgpgerror = import ../development/libraries/libgpg-error {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libgphoto2 = import ../development/libraries/libgphoto2 {
|
|
|
|
inherit fetchurl stdenv pkgconfig libusb libtool libexif libjpeg gettext;
|
|
|
|
};
|
2005-01-19 21:12:46 +00:00
|
|
|
|
2008-06-08 04:56:32 +01:00
|
|
|
libQGLViewer = import ../development/libraries/libqglviewer {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit qt4;
|
|
|
|
};
|
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
libsamplerate = import ../development/libraries/libsamplerate {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv mkDerivationByConfiguration pkgconfig lib;
|
2008-03-17 09:41:28 +00:00
|
|
|
};
|
2005-01-19 21:48:45 +00:00
|
|
|
|
2008-07-17 20:43:11 +01:00
|
|
|
libspectre = import ../development/libraries/libspectre {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
ghostscript = ghostscriptX;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libgsf = import ../development/libraries/libgsf {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig libxml2 gettext bzip2 python;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gnome) glib gnomevfs libbonobo;
|
|
|
|
};
|
2005-01-19 21:48:45 +00:00
|
|
|
|
2008-02-11 21:02:38 +00:00
|
|
|
libid3tag = import ../development/libraries/libid3tag {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libidn = import ../development/libraries/libidn {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-01-07 17:25:39 +00:00
|
|
|
|
2008-01-13 15:21:21 +00:00
|
|
|
libiec61883 = import ../development/libraries/libiec61883 {
|
|
|
|
inherit fetchurl stdenv pkgconfig libraw1394;
|
|
|
|
};
|
|
|
|
|
2008-02-20 23:02:41 +00:00
|
|
|
libjingle = selectVersion ../development/libraries/libjingle "0.3.11" {
|
|
|
|
inherit fetchurl stdenv mediastreamer;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libjpeg = import ../development/libraries/libjpeg {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
};
|
2005-11-22 22:32:18 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libjpegStatic = lowPrio (appendToName "static" (import ../development/libraries/libjpeg-static {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
static = true;
|
|
|
|
}));
|
2005-02-16 16:18:43 +00:00
|
|
|
|
2008-01-28 19:44:20 +00:00
|
|
|
libksba = import ../development/libraries/libksba {
|
2008-03-03 10:55:20 +00:00
|
|
|
inherit fetchurl stdenv libgpgerror;
|
2008-01-28 19:44:20 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libmad = import ../development/libraries/libmad {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-10-26 22:10:31 +01:00
|
|
|
|
2008-03-03 10:55:20 +00:00
|
|
|
libmcs = import ../development/libraries/libmcs {
|
|
|
|
inherit fetchurl stdenv pkgconfig libmowgli;
|
|
|
|
};
|
|
|
|
|
2008-05-11 12:46:48 +01:00
|
|
|
libmicrohttpd = import ../development/libraries/libmicrohttpd {
|
|
|
|
inherit fetchurl stdenv curl;
|
|
|
|
};
|
|
|
|
|
2008-03-03 10:55:20 +00:00
|
|
|
libmowgli = import ../development/libraries/libmowgli {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libmpcdec = import ../development/libraries/libmpcdec {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-10-26 22:10:31 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libmspack = import ../development/libraries/libmspack {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2008-01-28 19:47:12 +00:00
|
|
|
libnova = import ../development/libraries/libnova {
|
2008-03-03 10:55:20 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-01-28 19:47:12 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libogg = import ../development/libraries/libogg {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-25 18:02:05 +00:00
|
|
|
|
2008-08-25 14:25:07 +01:00
|
|
|
liboil = composedArgsAndFun
|
2008-10-26 08:40:11 +00:00
|
|
|
(selectVersion ../development/libraries/liboil "0.3.15") {
|
2008-02-22 03:06:12 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig;
|
2008-03-10 20:13:44 +00:00
|
|
|
inherit (gtkLibs) glib;
|
2008-02-22 03:06:12 +00:00
|
|
|
};
|
|
|
|
|
2008-02-12 10:51:44 +00:00
|
|
|
liboop = import ../development/libraries/liboop {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libotr = import ../development/libraries/libotr {
|
|
|
|
inherit fetchurl stdenv libgcrypt;
|
|
|
|
};
|
2007-05-13 15:22:24 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libpcap = import ../development/libraries/libpcap {
|
|
|
|
inherit fetchurl stdenv flex bison;
|
|
|
|
};
|
2007-09-06 16:56:39 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libpng = import ../development/libraries/libpng {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
2007-08-08 14:20:18 +01:00
|
|
|
|
2008-01-31 17:32:28 +00:00
|
|
|
/*libscdFun = lib.sumArgs (selectVersion ../development/libraries/libscd "0.4.2") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit stdenv fetchurl builderDefs libextractor perl pkgconfig;
|
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
|
2008-01-31 17:32:28 +00:00
|
|
|
libscd = libscdFun null;*/
|
2007-10-12 21:33:03 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libsigcxx = import ../development/libraries/libsigcxx {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
|
2008-02-07 10:43:05 +00:00
|
|
|
libsigsegv = selectVersion ../development/libraries/libsigsegv "2.5" {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-03-05 13:44:27 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libsndfile = import ../development/libraries/libsndfile {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-11-05 08:32:20 +00:00
|
|
|
|
2008-05-20 15:25:09 +01:00
|
|
|
libtasn1 = import ../development/libraries/libtasn1 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libtheora = import ../development/libraries/libtheora {
|
|
|
|
inherit fetchurl stdenv libogg libvorbis;
|
|
|
|
};
|
2007-11-05 08:32:20 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libtiff = import ../development/libraries/libtiff {
|
|
|
|
inherit fetchurl stdenv zlib libjpeg;
|
|
|
|
};
|
2007-08-10 09:21:31 +01:00
|
|
|
|
2008-08-12 20:57:35 +01:00
|
|
|
libtommath = import ../development/libraries/libtommath {
|
|
|
|
inherit fetchurl stdenv libtool;
|
|
|
|
};
|
|
|
|
|
2008-10-08 21:03:35 +01:00
|
|
|
libupnp = import ../development/libraries/pupnp {
|
2008-10-07 22:18:01 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-31 21:52:43 +00:00
|
|
|
giflib = import ../development/libraries/giflib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
libungif = import ../development/libraries/giflib/libungif.nix {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libusb = import ../development/libraries/libusb {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-01-28 19:45:30 +00:00
|
|
|
libunwind = import ../development/libraries/libunwind {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-10-04 16:24:08 +01:00
|
|
|
libvncserver = builderDefsPackage (import ../development/libraries/libvncserver) {
|
|
|
|
inherit libtool libjpeg openssl zlib;
|
2008-10-09 11:10:49 +01:00
|
|
|
inherit (xlibs) xproto libX11 damageproto libXdamage
|
2008-10-04 16:24:08 +01:00
|
|
|
libXext xextproto fixesproto libXfixes xineramaproto
|
|
|
|
libXinerama libXrandr randrproto libXtst;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libvorbis = import ../development/libraries/libvorbis {
|
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
2006-07-08 13:44:39 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libwmf = import ../development/libraries/libwmf {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig imagemagick
|
2008-03-17 09:41:28 +00:00
|
|
|
zlib libpng freetype libjpeg libxml2;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libwpd = import ../development/libraries/libwpd {
|
|
|
|
inherit fetchurl stdenv pkgconfig libgsf libxml2 bzip2;
|
|
|
|
inherit (gnome) glib;
|
|
|
|
};
|
2007-02-28 17:52:41 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libxcrypt = import ../development/libraries/libxcrypt {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-08-06 19:45:53 +01:00
|
|
|
|
2008-02-18 20:53:36 +00:00
|
|
|
libxklavier = selectVersion ../development/libraries/libxklavier "3.4" {
|
|
|
|
inherit fetchurl stdenv xkeyboard_config pkgconfig libxml2;
|
|
|
|
inherit (xorg) libX11 libICE libxkbfile;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libxml2 = import ../development/libraries/libxml2 {
|
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
pythonSupport = false;
|
|
|
|
};
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libxml2Python = lowPrio (appendToName "with-python" (import ../development/libraries/libxml2 {
|
|
|
|
inherit fetchurl stdenv zlib python;
|
|
|
|
pythonSupport = true;
|
|
|
|
}));
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libxslt = import ../development/libraries/libxslt {
|
|
|
|
inherit fetchurl stdenv libxml2;
|
|
|
|
};
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libixp_for_wmii = lowPrio (import ../development/libraries/libixp_for_wmii {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
});
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libzip = import ../development/libraries/libzip {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv zlib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-07-25 09:44:05 +01:00
|
|
|
|
2008-07-01 15:47:49 +01:00
|
|
|
lightning = import ../development/libraries/lightning {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
log4cxx = import ../development/libraries/log4cxx {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv automake autoconf libtool cppunit libxml2 boost;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2008-01-28 19:49:25 +00:00
|
|
|
loudmouth = import ../development/libraries/loudmouth {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv libidn gnutls pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
2008-01-28 19:49:25 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lzo = import ../development/libraries/lzo {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2008-03-03 10:55:20 +00:00
|
|
|
# failed to build
|
2008-08-14 23:04:30 +01:00
|
|
|
mediastreamer = composedArgsAndFun (selectVersion
|
2008-02-07 11:07:27 +00:00
|
|
|
../development/libraries/mediastreamer "2.2.0-cvs20080207") {
|
2008-02-10 17:34:49 +00:00
|
|
|
inherit fetchurl stdenv automake libtool autoconf alsaLib pkgconfig speex
|
|
|
|
ortp;
|
|
|
|
ffmpeg = ffmpeg_svn;
|
2008-02-07 09:43:10 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mesaSupported =
|
|
|
|
system == "i686-linux" ||
|
|
|
|
system == "x86_64-linux";
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mesa = assert mesaSupported; import ../development/libraries/mesa {
|
|
|
|
inherit fetchurl stdenv pkgconfig x11 xlibs libdrm;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mesaHeaders = import ../development/libraries/mesa/headers.nix {
|
|
|
|
inherit stdenv;
|
|
|
|
mesaSrc = mesa.src;
|
|
|
|
};
|
2006-10-08 11:31:55 +01:00
|
|
|
|
2008-09-02 14:43:53 +01:00
|
|
|
ming = import ../development/libraries/ming {
|
|
|
|
inherit fetchurl stdenv flex bison freetype zlib libpng perl;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mpeg2dec = import ../development/libraries/mpeg2dec {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-08-13 10:46:54 +01:00
|
|
|
|
2008-02-10 17:35:03 +00:00
|
|
|
msilbc = selectVersion ../development/libraries/msilbc "2.0.0" {
|
|
|
|
inherit fetchurl stdenv ilbc mediastreamer pkgconfig;
|
|
|
|
};
|
|
|
|
|
2008-02-21 16:17:43 +00:00
|
|
|
mpich2 = import ../development/libraries/mpich2 {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ncurses = composedArgsAndFun (import ../development/libraries/ncurses) {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
unicode = (system != "i686-cygwin");
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ncursesDiet = import ../development/libraries/ncurses-diet {
|
|
|
|
inherit fetchurl;
|
|
|
|
stdenv = useDietLibC stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-19 16:29:25 +01:00
|
|
|
neon = neon026;
|
|
|
|
|
|
|
|
neon026 = import ../development/libraries/neon/0.26.nix {
|
|
|
|
inherit fetchurl stdenv libxml2 zlib openssl;
|
|
|
|
compressionSupport = true;
|
|
|
|
sslSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
neon028 = import ../development/libraries/neon/0.28.nix {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv libxml2 zlib openssl;
|
|
|
|
compressionSupport = true;
|
|
|
|
sslSupport = true;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
nss = import ../development/libraries/nss {
|
|
|
|
inherit fetchurl stdenv perl zip;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-30 16:50:05 +00:00
|
|
|
ode = builderDefsPackage (import ../development/libraries/ode) {
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
openal = import ../development/libraries/openal {
|
2008-10-12 15:17:44 +01:00
|
|
|
inherit fetchurl stdenv cmake alsaLib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# added because I hope that it has been easier to compile on x86 (for blender)
|
|
|
|
openalSoft = import ../development/libraries/openalSoft {
|
|
|
|
inherit fetchurl stdenv alsaLib libtool cmake;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
openbabel = import ../development/libraries/openbabel {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv zlib libxml2;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# this ctl version is needed by openexr_viewers
|
|
|
|
openexr_ctl = import ../development/libraries/openexr_ctl {
|
|
|
|
inherit fetchurl stdenv ilmbase ctl;
|
|
|
|
openexr = openexr_1_6_1;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
openexr_1_6_1 = import ../development/libraries/openexr {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv ilmbase zlib pkgconfig lib;
|
2007-12-30 22:02:04 +00:00
|
|
|
version = "1.6.1";
|
|
|
|
# optional features:
|
|
|
|
inherit ctl;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# This older version is needed by blender (it complains about missing half.h )
|
|
|
|
openexr_1_4_0 = import ../development/libraries/openexr {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv ilmbase zlib pkgconfig lib;
|
2007-12-30 22:02:04 +00:00
|
|
|
version = "1.4.0";
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
openldap = import ../development/libraries/openldap {
|
|
|
|
inherit fetchurl stdenv openssl cyrus_sasl db4;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
openssl = import ../development/libraries/openssl {
|
2008-05-27 08:49:55 +01:00
|
|
|
fetchurl = fetchurlBoot;
|
|
|
|
inherit stdenv perl;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-18 20:51:25 +00:00
|
|
|
ortp = selectVersion ../development/libraries/ortp "0.13.1" {
|
2008-01-28 19:49:08 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pangoxsl = import ../development/libraries/pangoxsl {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) glib pango;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pcre = import ../development/libraries/pcre {
|
|
|
|
inherit fetchurl stdenv;
|
2008-01-28 19:36:15 +00:00
|
|
|
unicodeSupport = getConfig ["pcre" "unicode"] false;
|
2007-11-21 19:28:54 +00:00
|
|
|
cplusplusSupport = !stdenv ? isDietLibC;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2008-10-12 15:27:51 +01:00
|
|
|
plib = import ../development/libraries/plib {
|
|
|
|
inherit fetchurl stdenv mesa freeglut SDL;
|
|
|
|
inherit (xlibs) libXi libSM libXmu libXext libX11;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
poppler = import ../development/libraries/poppler {
|
2008-07-17 16:02:57 +01:00
|
|
|
inherit fetchurl stdenv qt4 cairo freetype fontconfig zlib libjpeg
|
|
|
|
pkgconfig;
|
2007-11-21 19:28:54 +00:00
|
|
|
inherit (gtkLibs) glib gtk;
|
2008-07-17 16:02:57 +01:00
|
|
|
qt4Support = getConfig [ "poppler" "qt4Support" ] false;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-08-16 22:45:10 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
popt = import ../development/libraries/popt {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
2006-08-13 10:46:54 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
popt110 = import ../development/libraries/popt/popt-1.10.6.nix {
|
|
|
|
inherit fetchurl stdenv gettext libtool autoconf automake;
|
|
|
|
};
|
2005-08-24 15:26:32 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
proj = import ../development/libraries/proj.4 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-01-28 19:43:03 +00:00
|
|
|
pth = import ../development/libraries/pth {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-01-28 19:43:03 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
qt3 = import ../development/libraries/qt-3 {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql mesa;
|
|
|
|
inherit (xlibs) xextproto libXft libXrender libXrandr randrproto
|
|
|
|
libXmu libXinerama xineramaproto libXcursor;
|
|
|
|
openglSupport = mesaSupported;
|
2008-01-28 19:48:57 +00:00
|
|
|
mysqlSupport = getConfig ["qt" "mysql"] false;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-23 10:01:04 +01:00
|
|
|
qt3mysql = import ../development/libraries/qt-3 {
|
|
|
|
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql mesa;
|
|
|
|
inherit (xlibs) xextproto libXft libXrender libXrandr randrproto
|
|
|
|
libXmu libXinerama xineramaproto libXcursor;
|
|
|
|
openglSupport = mesaSupported;
|
|
|
|
mysqlSupport = true;
|
|
|
|
};
|
|
|
|
|
2008-05-10 10:09:56 +01:00
|
|
|
qt4 = import ../development/libraries/qt-4 {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit fetchurl stdenv fetchsvn zlib libjpeg libpng which mysql mesa openssl cups dbus
|
2008-03-17 09:41:28 +00:00
|
|
|
fontconfig freetype pkgconfig libtiff;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) xextproto libXft libXrender libXrandr randrproto
|
2008-03-17 09:41:28 +00:00
|
|
|
libXmu libXinerama xineramaproto libXcursor libICE libSM libX11 libXext
|
|
|
|
inputproto fixesproto libXfixes;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gnome) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
readline = readline5;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
readline4 = import ../development/libraries/readline/readline4.nix {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
readline5 = import ../development/libraries/readline/readline5.nix {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2006-04-03 14:02:05 +01:00
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
# Also known as librdf, includes raptor and rasqal
|
2007-12-30 22:02:04 +00:00
|
|
|
redland = import ../development/libraries/redland {
|
2008-02-10 17:42:11 +00:00
|
|
|
inherit fetchurl stdenv openssl libxml2 pkgconfig perl postgresql sqlite
|
|
|
|
mysql libxslt curl pcre;
|
|
|
|
bdb = db4;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-11-11 16:36:11 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
rte = import ../development/libraries/rte {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-08-24 16:02:30 +01:00
|
|
|
|
2008-03-10 20:13:44 +00:00
|
|
|
schroedinger = import ../development/libraries/schroedinger {
|
|
|
|
inherit fetchurl stdenv liboil pkgconfig;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
SDL = import ../development/libraries/SDL {
|
|
|
|
inherit fetchurl stdenv x11 mesa alsaLib;
|
|
|
|
inherit (xlibs) libXrandr;
|
|
|
|
openglSupport = mesaSupported;
|
|
|
|
alsaSupport = true;
|
|
|
|
};
|
2006-11-25 23:41:53 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
SDL_image = import ../development/libraries/SDL_image {
|
|
|
|
inherit fetchurl stdenv SDL libjpeg libungif libtiff libpng;
|
|
|
|
inherit (xlibs) libXpm;
|
|
|
|
};
|
2004-08-23 10:35:36 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
SDL_mixer = import ../development/libraries/SDL_mixer {
|
|
|
|
inherit fetchurl stdenv SDL libogg libvorbis;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-02-06 21:26:17 +00:00
|
|
|
SDL_net = import ../development/libraries/SDL_net {
|
|
|
|
inherit fetchurl stdenv SDL;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
SDL_ttf = import ../development/libraries/SDL_ttf {
|
|
|
|
inherit fetchurl stdenv SDL freetype;
|
|
|
|
};
|
2005-03-11 10:46:20 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
slang = import ../development/libraries/slang {
|
|
|
|
inherit fetchurl stdenv pcre libpng;
|
|
|
|
};
|
2005-03-11 10:55:21 +00:00
|
|
|
|
2008-09-24 01:42:06 +01:00
|
|
|
snack = import ../development/libraries/snack {
|
|
|
|
inherit fetchurl stdenv tcl tk pkgconfig x11;
|
|
|
|
# optional
|
|
|
|
inherit alsaLib vorbisTools python;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
speex = import ../development/libraries/speex {
|
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
2007-08-16 22:45:10 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
sqlite = import ../development/libraries/sqlite {
|
2008-08-29 14:53:28 +01:00
|
|
|
inherit fetchurl stdenv readline;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-04-22 19:08:37 +01:00
|
|
|
|
2008-09-05 18:17:00 +01:00
|
|
|
stlport = import ../development/libraries/stlport {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
t1lib = import ../development/libraries/t1lib {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXaw libXpm;
|
|
|
|
};
|
2005-03-11 11:02:31 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
taglib = import ../development/libraries/taglib {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2008-01-28 19:49:44 +00:00
|
|
|
tapioca_qt = import ../development/libraries/tapioca-qt {
|
|
|
|
inherit fetchsvn stdenv cmake telepathy_qt;
|
2008-03-17 09:41:28 +00:00
|
|
|
qt = qt4;
|
2008-01-28 19:49:44 +00:00
|
|
|
};
|
|
|
|
|
2008-07-15 10:58:30 +01:00
|
|
|
tecla = import ../development/libraries/tecla {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-01-28 19:49:44 +00:00
|
|
|
telepathy_gabble = import ../development/libraries/telepathy-gabble {
|
|
|
|
inherit fetchurl stdenv pkgconfig libxslt telepathy_glib loudmouth;
|
|
|
|
};
|
|
|
|
|
|
|
|
telepathy_glib = import ../development/libraries/telepathy-glib {
|
|
|
|
inherit fetchurl stdenv dbus_glib pkgconfig libxslt python;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit (gtkLibs) glib;
|
2008-01-28 19:49:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
telepathy_qt = import ../development/libraries/telepathy-qt {
|
|
|
|
inherit fetchsvn stdenv cmake;
|
2008-03-17 09:41:28 +00:00
|
|
|
qt = qt4;
|
2008-01-28 19:49:44 +00:00
|
|
|
};
|
|
|
|
|
2008-09-25 22:38:09 +01:00
|
|
|
tk = composedArgsAndFun (selectVersion ../development/libraries/tk "8.4.18") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv tcl x11;
|
|
|
|
};
|
2007-12-01 16:20:23 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
unixODBC = import ../development/libraries/unixODBC {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-12 00:03:30 +01:00
|
|
|
unixODBCDrivers = recurseIntoAttrs (import ../development/libraries/unixODBCDrivers {
|
|
|
|
inherit fetchurl stdenv unixODBC glibc libtool openssl zlib;
|
2008-06-13 10:44:43 +01:00
|
|
|
inherit postgresql mysql sqlite;
|
2008-06-12 00:03:30 +01:00
|
|
|
});
|
|
|
|
|
2008-06-29 08:02:11 +01:00
|
|
|
webkit = builderDefsPackage (import ../development/libraries/webkit) {
|
2008-07-08 00:11:13 +01:00
|
|
|
inherit (gtkLibs) gtk atk pango;
|
|
|
|
inherit freetype fontconfig gettext gperf curl
|
|
|
|
libjpeg libtiff libpng libxml2 libxslt sqlite
|
|
|
|
icu cairo perl intltool automake libtool
|
2008-08-25 14:25:07 +01:00
|
|
|
pkgconfig autoconf bison;
|
2008-06-29 08:02:11 +01:00
|
|
|
flex = flex2535;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-29 08:02:11 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxGTK = wxGTK26;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxGTK26 = import ../development/libraries/wxGTK-2.6 {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama libSM libXxf86vm xf86vidmodeproto;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxGTK28fun = lib.sumArgs (import ../development/libraries/wxGTK-2.8);
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxGTK28deps = wxGTK28fun {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXinerama libSM libXxf86vm xf86vidmodeproto;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxGTK28 = wxGTK28deps null;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-05-22 01:18:45 +01:00
|
|
|
x264 = import ../development/libraries/x264 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
Xaw3d = import ../development/libraries/Xaw3d {
|
|
|
|
inherit fetchurl stdenv x11 bison;
|
|
|
|
flex = flex2533;
|
|
|
|
inherit (xlibs) imake gccmakedep libXmu libXpm libXp;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
xineLib = import ../development/libraries/xine-lib {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv zlib x11 libdvdcss alsaLib pkgconfig mesa aalib SDL
|
|
|
|
libvorbis libtheora speex;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libXv libXinerama;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-07-07 12:54:25 +01:00
|
|
|
xautolock = import ../misc/screensavers/xautolock {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xorg) imake;
|
|
|
|
inherit (xlibs) libXScrnSaver scrnsaverproto;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
xlibsWrapper = import ../development/libraries/xlibs-wrapper {
|
|
|
|
inherit stdenv;
|
|
|
|
packages = [
|
|
|
|
freetype fontconfig xlibs.xproto xlibs.libX11 xlibs.libXt
|
|
|
|
xlibs.libXft xlibs.libXext xlibs.libSM xlibs.libICE
|
|
|
|
xlibs.xextproto
|
|
|
|
];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
zlib = import ../development/libraries/zlib {
|
2008-05-27 08:49:55 +01:00
|
|
|
fetchurl = fetchurlBoot;
|
|
|
|
inherit stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-03-11 11:08:38 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
zlibStatic = lowPrio (appendToName "static" (import ../development/libraries/zlib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
static = true;
|
|
|
|
}));
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
zvbi = import ../development/libraries/zvbi {
|
|
|
|
inherit fetchurl stdenv libpng x11;
|
|
|
|
pngSupport = true;
|
|
|
|
};
|
2006-08-27 20:59:45 +01:00
|
|
|
|
2005-12-26 15:56:00 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / LIBRARIES / JAVA
|
2005-10-12 12:57:24 +01:00
|
|
|
|
2006-07-04 17:58:25 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
atermjava = import ../development/libraries/java/aterm {
|
|
|
|
inherit fetchurl sharedobjects jjtraveler jdk;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
};
|
2005-02-15 16:22:20 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
commonsFileUpload = import ../development/libraries/java/jakarta-commons/file-upload {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
httpunit = import ../development/libraries/java/httpunit {
|
|
|
|
inherit stdenv fetchurl unzip;
|
|
|
|
};
|
2007-08-18 10:35:54 +01:00
|
|
|
|
2008-02-26 08:48:40 +00:00
|
|
|
gwtdragdrop = import ../development/libraries/java/gwt-dragdrop {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2008-02-25 12:45:17 +00:00
|
|
|
gwtwidgets = import ../development/libraries/java/gwt-widgets {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jakartabcel = import ../development/libraries/java/jakarta-bcel {
|
|
|
|
regexp = jakartaregexp;
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jakartaregexp = import ../development/libraries/java/jakarta-regexp {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-12-11 02:35:05 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
javaCup = import ../development/libraries/java/cup {
|
|
|
|
inherit stdenv fetchurl jdk;
|
|
|
|
};
|
2004-04-05 15:09:01 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
javasvn = import ../development/libraries/java/javasvn {
|
|
|
|
inherit stdenv fetchurl unzip;
|
|
|
|
};
|
2007-03-04 23:37:34 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jclasslib = import ../development/tools/java/jclasslib {
|
|
|
|
inherit fetchurl stdenv xpf jre;
|
|
|
|
ant = apacheAnt14;
|
|
|
|
};
|
2003-11-06 16:28:57 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jdom = import ../development/libraries/java/jdom {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2007-03-18 23:58:22 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jflex = import ../development/libraries/java/jflex {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jjtraveler = import ../development/libraries/java/jjtraveler {
|
|
|
|
inherit fetchurl jdk;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
junit = import ../development/libraries/java/junit {
|
|
|
|
inherit stdenv fetchurl unzip;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lucene = import ../development/libraries/java/lucene {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mockobjects = import ../development/libraries/java/mockobjects {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
saxon = import ../development/libraries/java/saxon {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
saxonb = import ../development/libraries/java/saxon/default8.nix {
|
|
|
|
inherit fetchurl stdenv unzip jre;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
sharedobjects = import ../development/libraries/java/shared-objects {
|
|
|
|
inherit fetchurl jdk;
|
|
|
|
stdenv = overrideInStdenv stdenv [gnumake380];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-02-26 09:07:12 +00:00
|
|
|
smack = import ../development/libraries/java/smack {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
swt = import ../development/libraries/java/swt {
|
|
|
|
inherit stdenv fetchurl unzip jdk pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libXtst;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
xalanj = import ../development/libraries/java/xalanj {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / LIBRARIES / HASKELL
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-29 10:05:49 +01:00
|
|
|
benchpress = import ../development/libraries/haskell/benchpress {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
|
|
|
maybench = import ../development/libraries/haskell/maybench {
|
|
|
|
inherit cabal benchpress;
|
|
|
|
};
|
|
|
|
|
2008-01-17 16:54:48 +00:00
|
|
|
binary = import ../development/libraries/haskell/binary {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit cabal;
|
2008-01-22 16:26:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# cabal is a utility function to build cabal-based
|
|
|
|
# Haskell packages
|
2008-07-21 15:43:33 +01:00
|
|
|
cabal682 = import ../development/libraries/haskell/cabal/cabal.nix {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
ghc = ghc682;
|
|
|
|
};
|
|
|
|
|
|
|
|
cabal683 = import ../development/libraries/haskell/cabal/cabal.nix {
|
2008-01-17 16:54:48 +00:00
|
|
|
inherit stdenv fetchurl;
|
2008-07-21 15:43:33 +01:00
|
|
|
ghc = ghc683;
|
2008-01-17 16:54:48 +00:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-07-22 14:01:30 +01:00
|
|
|
cabalboot = import ../development/libraries/haskell/cabal/cabal.nix {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
ghc = ghcboot;
|
|
|
|
};
|
|
|
|
|
2008-07-21 15:43:33 +01:00
|
|
|
cabal = cabal683;
|
2008-01-17 16:54:48 +00:00
|
|
|
|
2008-01-22 19:02:55 +00:00
|
|
|
Crypto = import ../development/libraries/haskell/Crypto {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal;
|
2008-01-22 19:02:55 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gtk2hs = import ../development/libraries/haskell/gtk2hs {
|
2008-01-25 12:42:07 +00:00
|
|
|
inherit pkgconfig stdenv fetchurl cairo ghc;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gnome) gtk glib GConf libglade libgtkhtml gtkhtml;
|
2008-01-25 12:42:07 +00:00
|
|
|
};
|
|
|
|
|
2008-08-26 13:50:03 +01:00
|
|
|
haxr = import ../development/libraries/haskell/haxr {
|
|
|
|
inherit cabal HaXml HTTP;
|
|
|
|
};
|
|
|
|
|
|
|
|
haxr_th = import ../development/libraries/haskell/haxr-th {
|
|
|
|
inherit cabal haxr HaXml HTTP;
|
|
|
|
};
|
|
|
|
|
|
|
|
HaXml = import ../development/libraries/haskell/HaXml {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2008-07-31 13:36:47 +01:00
|
|
|
haskellEditline = import ../development/libraries/haskell/editline {
|
|
|
|
inherit cabal editline;
|
|
|
|
};
|
|
|
|
|
2008-01-25 12:42:07 +00:00
|
|
|
HDBC = import ../development/libraries/haskell/HDBC/HDBC-1.1.4.nix {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
|
|
|
HDBCPostgresql = import ../development/libraries/haskell/HDBC/HDBC-postgresql-1.1.4.0.nix {
|
|
|
|
inherit cabal HDBC postgresql;
|
|
|
|
};
|
|
|
|
|
|
|
|
HDBCSqlite = import ../development/libraries/haskell/HDBC/HDBC-sqlite3-1.1.4.0.nix {
|
|
|
|
inherit cabal HDBC sqlite;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-26 13:50:03 +01:00
|
|
|
HTTP = import ../development/libraries/haskell/HTTP {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2008-10-23 15:22:36 +01:00
|
|
|
monadlab = import ../development/libraries/haskell/monadlab {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2008-01-22 19:02:55 +00:00
|
|
|
pcreLight = import ../development/libraries/haskell/pcre-light {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal pcre;
|
2008-01-22 19:02:55 +00:00
|
|
|
};
|
|
|
|
|
2008-01-23 08:36:03 +00:00
|
|
|
uulib = import ../development/libraries/haskell/uulib {
|
|
|
|
inherit cabal;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxHaskell = import ../development/libraries/haskell/wxHaskell {
|
2008-02-22 14:09:29 +00:00
|
|
|
inherit stdenv fetchurl unzip wxGTK ghc;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
|
|
|
wxHaskell68 = lowPrio (appendToName "ghc68" (import ../development/libraries/haskell/wxHaskell {
|
|
|
|
inherit stdenv fetchurl unzip wxGTK;
|
|
|
|
ghc = ghc68;
|
|
|
|
}));
|
|
|
|
*/
|
2008-01-16 10:35:49 +00:00
|
|
|
|
|
|
|
X11 = import ../development/libraries/haskell/X11 {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal;
|
2008-01-16 10:35:49 +00:00
|
|
|
inherit (xlibs) libX11 libXinerama libXext;
|
|
|
|
xineramaSupport = true;
|
|
|
|
};
|
|
|
|
|
2008-01-19 16:42:42 +00:00
|
|
|
vty = import ../development/libraries/haskell/vty {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal;
|
2008-01-19 16:42:42 +00:00
|
|
|
};
|
|
|
|
|
2008-01-17 15:57:26 +00:00
|
|
|
zlibHaskell = import ../development/libraries/haskell/zlib {
|
2008-01-22 22:43:38 +00:00
|
|
|
inherit cabal zlib;
|
2008-01-17 15:57:26 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / PERL MODULES
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
buildPerlPackage = import ../development/perl-modules/generic perl;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlAlgorithmAnnotate = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Algorithm-Annotate-0.10";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/Algorithm-Annotate-0.10.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1y92k4nqkscfwpriv8q7c90rjfj85lvwq1k96niv2glk8d37dcf9";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlAlgorithmDiff = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Algorithm-Diff-1.15";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/T/TY/TYEMQ/Algorithm-Diff-1.1901.zip;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0qk60fi49mpyvnfpjd2dzcmya8x3g5zfgb2hrnl7a5krn045g6i2";
|
|
|
|
};
|
|
|
|
buildInputs = [unzip];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlAppCLI = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "App-CLI-0.07";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/App-CLI-0.07.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "000866qsm7jck3ini69b02sgbjwp6s297lsds002r7xk2wb6fqcz";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlLocaleMaketextSimple];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlAppConfig = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "AppConfig-1.66";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/A/AB/ABW/AppConfig-1.66.tar.gz;
|
|
|
|
sha256 = "1p1vs9px20lrq9mdwpzp309a8r6rchibsdmxang4krk90pi2sh4b";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlArrayCompare = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Array-Compare-1.16";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/D/DA/DAVECROSS/Array-Compare-1.16.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1iwkn7d07a7vgl3jrv4f0glwapxcbdwwsy3aa6apgwam9119hl7q";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlArchiveZip = buildPerlPackage {
|
|
|
|
name = "Archive-Zip-1.16";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nixos.org/tarballs/Archive-Zip-1.16.tar.gz;
|
|
|
|
md5 = "e28dff400d07b1659d659d8dde7071f1";
|
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
perlBerkeleyDB = import ../development/perl-modules/BerkeleyDB {
|
|
|
|
inherit fetchurl perl db4;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlBitVector = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Bit-Vector-6.4";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/ST/STBEY/Bit-Vector-6.4.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "146vr78r6w3cxrm0ji491ylaa1abqh7fs81qhg15g3gzzxfg33bp";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCarpClan];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCacheFastMmap = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Cache-FastMmap-1.28";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RO/ROBM/Cache-FastMmap-1.28.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1m851bz5025wy24mzsi1i8hdyg8bm7lszx9rnn47llsv6hb9v0da";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCarpClan = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Carp-Clan-6.00";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/J/JJ/JJORE/Carp-Clan-6.00.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0lbin4i0vzagcwkywpd5x4gz3a4ira4yn5g5v1ip0pbpyqnjk15h";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestException];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystActionRenderView = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Catalyst-Action-RenderView-0.08";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/M/MR/MRAMBERG/Catalyst-Action-RenderView-0.08.tar.gz;
|
|
|
|
sha256 = "1qng995mzgpm1gwb315ynm3spajf0ypmh1ciivqks3r0aamq2ar0";
|
|
|
|
};
|
2008-10-18 10:32:59 +01:00
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlHTTPRequestAsCGI perlDataVisitor];
|
2008-10-17 15:14:50 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystDevel = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Catalyst-Devel-1.08";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/M/MR/MRAMBERG/Catalyst-Devel-1.08.tar.gz;
|
|
|
|
sha256 = "1wc2ysmldxd5bczfy6ijd8pbaq18g3snrg0cjc8k48941k8dcqpc";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
2008-10-18 10:32:59 +01:00
|
|
|
perlCatalystRuntime perlCatalystActionRenderView
|
|
|
|
perlCatalystPluginStaticSimple perlCatalystPluginConfigLoader
|
|
|
|
perlPathClass perlTemplateToolkit perlClassAccessor
|
|
|
|
perlConfigGeneral perlFileCopyRecursive perlParent
|
2008-10-17 15:14:50 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystManual = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Catalyst-Manual-5.7013";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/Z/ZA/ZARQUON/Catalyst-Manual-5.7013.tar.gz;
|
|
|
|
sha256 = "17n9w7gd2mj8mkw8zv9as0ba3qzwn07js7xgd46avxpcscl2fpqx";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystModelDBICSchema = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Model-DBIC-Schema-0.21";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/B/BO/BOGDAN/Catalyst-Model-DBIC-Schema-0.21.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "12hi2sa5ggn2jqnhbb9i2wf602bf6c06xmcqmiki5lvh4z1pxg6x";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlCatalystRuntime perlCatalystDevel perlDBIxClass
|
|
|
|
perlUNIVERSALrequire perlClassDataAccessor
|
|
|
|
perlDBIxClassSchemaLoader
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystRuntime = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Catalyst-Runtime-5.7015";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/M/MR/MRAMBERG/Catalyst-Runtime-5.7015.tar.gz;
|
|
|
|
sha256 = "039c6ipn87lf23y7r7zg0bnga31nqzklrf28p6nd0xkhs1wihfbg";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlLWP perlClassAccessor perlClassDataInheritable perlClassInspector
|
|
|
|
perlCGISimple perlDataDump perlFileModified perlHTTPBody perlHTTPRequestAsCGI
|
|
|
|
perlPathClass perlTextSimpleTable perlTreeSimple perlTreeSimpleVisitorFactory
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginAuthentication = buildPerlPackage {
|
2008-10-24 00:48:24 +01:00
|
|
|
name = "Catalyst-Plugin-Authentication-0.10006";
|
2008-10-18 10:32:59 +01:00
|
|
|
src = fetchurl {
|
2008-10-24 00:48:24 +01:00
|
|
|
url = mirror://cpan/authors/id/J/JA/JAYK/Catalyst-Plugin-Authentication-0.10006.tar.gz;
|
|
|
|
sha256 = "11x5d1l7p8z7q20fj79nlhwbmsab21m56rj5x20jkqfl91jx1l2s";
|
2008-10-18 10:32:59 +01:00
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlCatalystPluginSession];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginAuthenticationStoreDBIC = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Authentication-Store-DBIC-0.11";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MS/MSTROUT/Catalyst-Plugin-Authentication-Store-DBIC-0.11.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "008x5yh65bmfdz3q7gxia739aajb8nx4ly5kyl4khl2pa9fy2jn7";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlCatalystRuntime perlCatalystPluginAuthentication
|
|
|
|
perlSetObject perlDBIxClass perlCatalystModelDBICSchema
|
|
|
|
perlCatalystPluginAuthorizationRoles perlCatalystPluginSessionStateCookie
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginAuthenticationStoreDBIxClass = buildPerlPackage {
|
2008-10-24 00:48:24 +01:00
|
|
|
name = "Catalyst-Authentication-Store-DBIx-Class-0.107";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://search.cpan.org/CPAN/authors/id/J/JA/JAYK/Catalyst-Authentication-Store-DBIx-Class-0.107.tar.gz;
|
|
|
|
sha256 = "1vlrl65wf2i65zm2svb1mvylcx5vdrvxr09y16az60kdwiqvam6n";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlCatalystRuntime perlCatalystPluginAuthentication perlCatalystModelDBICSchema
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginAuthorizationACL = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Authorization-ACL-0.10";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RK/RKITOVER/Catalyst-Plugin-Authorization-ACL-0.10.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1y9pj0scpc4nd7m1xqy7yvjsffhfadzl0z5r4jjv2srndcv4xj1p";
|
|
|
|
};
|
2008-10-24 00:48:24 +01:00
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlClassThrowable];
|
2008-10-20 04:58:49 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginAuthorizationRoles = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Authorization-Roles-0.07";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/B/BR/BRICAS/Catalyst-Plugin-Authorization-Roles-0.07.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "07b8zc7b06p0fprjj68fk7rgh781r9s3q8dx045sk03w0fnk3b4b";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlCatalystRuntime perlCatalystPluginAuthentication
|
|
|
|
perlTestException perlSetObject perlUNIVERSALisa
|
|
|
|
];
|
|
|
|
};
|
2008-10-18 10:32:59 +01:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginConfigLoader = buildPerlPackage {
|
2008-10-18 10:32:59 +01:00
|
|
|
name = "Catalyst-Plugin-ConfigLoader-0.21";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/B/BR/BRICAS/Catalyst-Plugin-ConfigLoader-0.21.tar.gz;
|
2008-10-18 10:32:59 +01:00
|
|
|
sha256 = "1wv7j69ddwr8vrc6v4ipymdnv8mr9ak5jwiq0fia85bx9cv9f77j";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlDataVisitor perlConfigAny];
|
2008-10-20 04:58:49 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginHTMLWidget = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-HTML-Widget-1.1";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SR/SRI/Catalyst-Plugin-HTML-Widget-1.1.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1zzyfhmzlqvbwk2w930k3mqk8z1lzhrja9ynx9yfq5gmc8qqg95l";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlHTMLWidget];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginSession = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Session-0.19";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/N/NU/NUFFIN/Catalyst-Plugin-Session-0.19.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1gdirzm0fd167cm7ilqjhsw3g8ipfcklkrb0sj1grp9szhs5nlsd";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlTestMockObject perlObjectSignature perlTestDeep];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginSessionStateCookie = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Session-State-Cookie-0.09";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/N/NU/NUFFIN/Catalyst-Plugin-Session-State-Cookie-0.09.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "03j2x66vq1ns4m5xlpwxmpnwhwqmg27m9qxm0kqg1a4v12ky9669";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlCatalystRuntime perlCatalystPluginSession perlTestMockObject
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginSessionStoreFastMmap = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Session-State-Cookie-0.09";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/K/KA/KARMAN/Catalyst-Plugin-Session-Store-FastMmap-0.05.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0k1x9fbixlb20bw5rym27ariss6rwbp06rd4znr979l7r571fy3p";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlPathClass perlCatalystPluginSession perlCacheFastMmap
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginStackTrace = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-StackTrace-0.09";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MS/MSTROUT/Catalyst-Plugin-StackTrace-0.09.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1pywxjhvn5zmcpnxj9ba77pz1jxq4d037yd43y0ks9sc31p01ydh";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlDevelStackTrace];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystPluginStaticSimple = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-Plugin-Static-Simple-0.20";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AG/AGRUNDMA/Catalyst-Plugin-Static-Simple-0.20.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1qpicgfha81ykxzg4kjll2qw8b1rwzdgvj4s3q9s20zl86gmfr3p";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCatalystRuntime perlMIMETypes];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCatalystViewTT = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Catalyst-View-TT-0.27";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MR/MRAMBERG/Catalyst-View-TT-0.27.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "03xs31y9m5nrmfzpfmlzlg3ivys1gg8nwd6fvwbg72a3z36brghd";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlCatalystRuntime perlTemplateToolkit perlClassAccessor
|
|
|
|
perlPathClass perlTemplateTimer
|
|
|
|
];
|
|
|
|
};
|
2008-10-18 10:32:59 +01:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCGISession = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "CGI-Session-3.95";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/S/SH/SHERZODR/CGI-Session-3.95.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
md5 = "fe9e46496c7c711c54ca13209ded500b";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCGISimple = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "CGI-Simple-1.106";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/A/AN/ANDYA/CGI-Simple-1.106.tar.gz;
|
|
|
|
sha256 = "0r0wc2260jnnch7dv7f6ailjf5w8hpqm2w146flfcchcryfxjlpg";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassAccessor = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Class-Accessor-0.31";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/K/KA/KASEI/Class-Accessor-0.31.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1a4v5qqdf9bipd6ba5n47mag0cmgwp97cid67i510aw96bcjrsiy";
|
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassAccessorChained = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Class-Accessor-Chained-0.01";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RC/RCLAMP/Class-Accessor-Chained-0.01.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlClassAccessor];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassAccessorGrouped = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Class-Accessor-Grouped-0.08001";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLACO/Class-Accessor-Grouped-0.08001.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "15hwk5w4xxw5zr3yzp8ib93mja6xwsknasfb1jsa6a4k0r7xmq3f";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlClassInspector perlMROCompat];
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassAutouse = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Class-Autouse-1.99_02";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AD/ADAMK/Class-Autouse-1.99_02.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1jkhczx2flxrz154ps90fj9wcchkpmnp5sapwc0l92rpn7jpsf08";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassC3 = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Class-C3-0.19";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/B/BL/BLBLACK/Class-C3-0.19.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1sn3s2ibdgwzirn3vl0s458qqncg76fxpqzcmyjmxy1kbdmjy01s";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassC3Componentised = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Class-C3-Componentised-1.0003";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AS/ASH/Class-C3-Componentised-1.0003.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0lbhzz18lfp2xa8h5cmhfnqbqzhvpx4jkvga9gzwiv9ppbdpzqdp";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlClassC3 perlClassInspector perlTestException];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassDataAccessor = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Class-Data-Accessor-0.04004";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLACO/Class-Data-Accessor-0.04004.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0578m3rplk41059rkkjy1009xrmrdivjnv8yxadwwdk1vzidc8n1";
|
|
|
|
};
|
|
|
|
};
|
2008-10-23 15:22:36 +01:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassDataInheritable = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Class-Data-Inheritable-0.08";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/T/TM/TMTM/Class-Data-Inheritable-0.08.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassInspector = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Class-Inspector-1.23";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/A/AD/ADAMK/Class-Inspector-1.23.tar.gz;
|
|
|
|
sha256 = "0d15b5wls14gqcd6v2k4kbc0v0a1qfb794h49wfc4vwjk5gnpbw1";
|
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlClassThrowable = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Class-Throwable-0.10";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/ST/STEVAN/Class-Throwable-0.10.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "01hjrfb951c9j83ncg5drnam8vsfdgkjjv0kjshxhkl93sgnlvdl";
|
|
|
|
};
|
2008-10-17 15:14:50 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCompressZlib = buildPerlPackage {
|
|
|
|
name = "Compress-Zlib-1.41";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nixos.org/tarballs/Compress-Zlib-1.41.tar.gz;
|
|
|
|
md5 = "ac135b84a03e814734496777cf5e5722";
|
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlConfigAny = buildPerlPackage {
|
2008-10-18 10:32:59 +01:00
|
|
|
name = "Config-Any-0.14";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/B/BR/BRICAS/Config-Any-0.14.tar.gz;
|
2008-10-18 10:32:59 +01:00
|
|
|
sha256 = "1vlr4w2m88figac5pblg6ppzrm11x2pm7r05n48s84cp4mizhim1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlConfigGeneral = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Config-General-2.40";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/T/TL/TLINDEN/Config-General-2.40.tar.gz;
|
|
|
|
sha256 = "0wf6dpaanaiy0490dlgs3pi3xvvijs237x9izb00cnzggxcfmsnz";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlconstant = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "constant-1.15";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SA/SAPER/constant-1.15.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1ygz0hd1fd3q88r6dlw14kpyh06zjprksdci7qva6skxz3261636";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlCryptPasswordMD5 = buildPerlPackage {
|
2008-02-12 08:47:56 +00:00
|
|
|
name = "Crypt-PasswdMD5-1.3";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/L/LU/LUISMUNOZ/Crypt-PasswdMD5-1.3.tar.gz;
|
2008-02-12 08:47:56 +00:00
|
|
|
sha256 = "13j0v6ihgx80q8jhyas4k48b64gnzf202qajyn097vj8v48khk54";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDataDump = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Data-Dump-1.11";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/G/GA/GAAS/Data-Dump-1.11.tar.gz;
|
|
|
|
sha256 = "0h5y40b6drgsf87nhwhqx1dprq70f98ibm03l9al4ndq7mrx97dd";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDataHierarchy = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Data-Hierarchy-0.34";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/Data-Hierarchy-0.34.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1vfrkygdaq0k7006i83jwavg9wgszfcyzbl9b7fp37z2acmyda5k";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestException];
|
|
|
|
};
|
2008-10-23 15:22:36 +01:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDataPage = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Data-Page-2.01";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/L/LB/LBROCARD/Data-Page-2.01.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0mvhlid9qx9yd94rgr4lfz9kvflimc1dzcah0x7q5disw39aqrzr";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestException perlClassAccessorChained];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDataVisitor = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Data-Visitor-0.21";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/N/NU/NUFFIN/Data-Visitor-0.21.tar.gz;
|
|
|
|
sha256 = "10cjh3rrqi4gwrmkpzilzmaqdrh71wr59035s6b4p2dzd117p931";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlTestMockObject perlMouse perlTaskWeaken perlTieUseOk perlTieToObject
|
|
|
|
perlNamespaceClean
|
|
|
|
];
|
|
|
|
};
|
2008-05-30 19:15:25 +01:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDateCalc = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Date-Calc-5.4";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/ST/STBEY/Date-Calc-5.4.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1q7d1sy9ka1akpbysgwj673i7wiwb48yjv6wx1v5dhxllyxlxqc8";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlCarpClan perlBitVector];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDateManip = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "DateManip-5.54";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SB/SBECK/Date-Manip-5.54.tar.gz;
|
|
|
|
sha256 = "0ap2jgqx7yvjsyph9zsvadsih41cj991j3jwgz5261sq7q74y7xn";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:11:09 +00:00
|
|
|
perlDBDSQLite = import ../development/perl-modules/DBD-SQLite {
|
2008-11-24 10:24:51 +00:00
|
|
|
inherit fetchurl buildPerlPackage perlDBI sqlite;
|
2008-10-10 15:51:20 +01:00
|
|
|
};
|
|
|
|
|
2008-02-12 08:42:56 +00:00
|
|
|
perlDBFile = import ../development/perl-modules/DB_File {
|
|
|
|
inherit fetchurl perl db4;
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDBI = buildPerlPackage {
|
2008-10-10 15:51:20 +01:00
|
|
|
name = "DBI-1.607";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/T/TI/TIMB/DBI-1.607.tar.gz;
|
|
|
|
sha256 = "053ysk2a4njhzq5p59v5s6jzyi0yqr8l6wkswbvy4fyil3ka343h";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDBIxClass = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "DBIx-Class-0.08099_04";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/L/LS/LSAUNDERS/DBIx-Class-0.08099_04.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0ik5bjsrlpz0sbwrrwiyjiga17rh9jb09gflqif5h59gq9y7kcyf";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlTestNoWarnings perlTestException perlDBI perlScopeGuard
|
|
|
|
perlPathClass perlClassInspector perlClassAccessorGrouped
|
|
|
|
perlCarpClan perlTestWarn perlDataPage perlSQLAbstract
|
|
|
|
perlSQLAbstractLimit perlClassC3 perlClassC3Componentised
|
|
|
|
perlModuleFind perlDBDSQLite perlJSONAny
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDBIxClassHTMLWidget = buildPerlPackage {
|
2008-10-24 00:48:24 +01:00
|
|
|
name = "DBIx-Class-HTMLWidget";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://search.cpan.org/CPAN/authors/id/A/AN/ANDREMAR/DBIx-Class-HTMLWidget-0.16.tar.gz;
|
|
|
|
sha256 = "05zhniyzl31nq410ywhxm0vmvac53h7ax42hjs9mmpvf45ipahj1";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlDBIxClass perlHTMLWidget];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDBIxClassSchemaLoader = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "DBIx-Class-Schema-Loader-0.04005";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/I/IL/ILMARI/DBIx-Class-Schema-Loader-0.04005.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1adymxsh1q7y1d3x25mar1rz6nshag16h6bfzhwy0w50qd2vvx9l";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlDBI perlDBDSQLite perlDataDump perlUNIVERSALrequire
|
|
|
|
perlClassAccessor perlClassDataAccessor perlClassC3 perlCarpClan
|
|
|
|
perlClassInspector perlDBIxClass perlLinguaENInflectNumber
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDevelStackTrace = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Devel-StackTrace-1.1902";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/D/DR/DROLSKY/Devel-StackTrace-1.1902.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0llkvmpdcbqhw28ck0gzw4jlc2zbz7sx3dqscysdc05nk2fd3iax";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDigestHMAC = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Digest-HMAC-1.01";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/G/GA/GAAS/Digest-HMAC-1.01.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "042d6nknc5icxqsy5asrh8v2shmvg7b3vbj95jyk4sbqlqpacwz3";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlDigestSHA1];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlDigestSHA1 = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "Digest-SHA1-2.11";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/G/GA/GAAS/Digest-SHA1-2.11.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
md5 = "2449bfe21d6589c96eebf94dae24df6b";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlEmailAddress = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "Email-Address-1.888";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/R/RJ/RJBS/Email-Address-1.888.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "0c6b8djnmiy0niskrvywd6867xd1qmn241ffdwj957dkqdakq9yx";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlEmailSend = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "Email-Send-2.185";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/R/RJ/RJBS/Email-Send-2.185.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "0pbgnnbmv6z3zzqaiq1sdcv5d26ijhw4p8k8kp6ac7arvldblamz";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlEmailSimple perlEmailAddress perlModulePluggable perlReturnValue];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlEmailSimple = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "Email-Simple-2.003";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/R/RJ/RJBS/Email-Simple-2.003.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "0h8873pidhkqy7415s5sx8z614d0haxiknbjwrn65icrr2m0b8g6";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlEmailValid = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Email-Valid-0.179";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RJ/RJBS/Email-Valid-0.179.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "13yfjll63cp1y4xqzdcr1mjhfncn48v6hckk5mvwi47w3ccj934a";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlMailTools perlNetDNS];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlEncode = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Encode-2.25";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/D/DA/DANKOGAI/Encode-2.25.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0prwmbg3xh1lqskianwrfrgasdfmz4kjm3qpdm27ay110jkk25ak";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlExtUtilsInstall = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "ExtUtils-Install-1.50";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/Y/YV/YVES/ExtUtils-Install-1.50.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "18fr056fwnnhvgc646crx2p9mybf69mh5rkcphc7bbvahw9i61jy";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlExtUtilsMakeMaker];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlExtUtilsMakeMaker = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "ExtUtils-MakeMaker-6.44";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MS/MSCHWERN/ExtUtils-MakeMaker-6.44.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0zyypnlmmyp06qbfdpc14rp5rj63066mjammn6rlcqz2iil9mpcj";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlExtUtilsManifest = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "ExtUtils-Manifest-1.53";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RK/RKOBES/ExtUtils-Manifest-1.53.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0xgfzivw0dfy29ydfjkg0c9mvlhjvlhc54s0yvbb4sxb2mdvrfkp";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlFilechdir = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "File-chdir-0.1002";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/D/DA/DAGOLDEN/File-chdir-0.1002.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1fc2l754bxsizli3injm4wqf8dn03iq16rmfn62l99nxpibl5k6p";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlFileCopyRecursive = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "File-Copy-Recursive-0.37";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/D/DM/DMUEY/File-Copy-Recursive-0.37.tar.gz;
|
|
|
|
sha256 = "12j0s01zwm67g4bcgbs0k61jwz59q1lndrnxyywxsz3xd30ki8rr";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlFileModified = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "File-Modified-0.07";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CO/CORION/File-Modified-0.07.tar.gz;
|
|
|
|
sha256 = "11zkg171fa5vdbyrbfcay134hhgyf4yaincjxwspwznrfmkpi49h";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlFileTemp = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "File-Temp-0.20";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/T/TJ/TJENNESS/File-Temp-0.20.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0n7lr7mpdvwgznw469qdpdmac627a26wp615dkpzanc452skad4v";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlFreezeThaw = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "FreezeThaw-0.43";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/I/IL/ILYAZ/modules/FreezeThaw-0.43.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1qamc5aggp35xk590a4hy660f2rhc2l7j65hbyxdya9yvg7z437l";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTMLParser = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "HTML-Parser-3.56";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/G/GA/GAAS/HTML-Parser-3.56.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "0x1h42r54aq4yqpwi7mla4jzia9c5ysyqh8ir2nav833f9jm6g2h";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlHTMLTagset];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTMLScrubber = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "HTML-Scrubber-0.08";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/P/PO/PODMASTER/HTML-Scrubber-0.08.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0xb5zj67y2sjid9bs3yfm81rgi91fmn38wy1ryngssw6vd92ijh2";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlHTMLParser];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTMLTagset = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "HTML-Tagset-3.10";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/P/PE/PETDANCE/HTML-Tagset-3.10.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "05k292qy7jzjlmmybis8nncpnwwa4jfkm7q3gq6866ydxrzds9xh";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTMLTree = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "HTML-Tree-3.23";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/P/PE/PETEK/HTML-Tree-3.23.tar.gz;
|
|
|
|
sha256 = "1pn80f4g1wixs030f40b80wrj12kwfinwycrx3f10drg4v7ml5zm";
|
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
propagatedBuildInputs = [perlHTMLParser];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTMLWidget = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "HTML-Widget-1.11";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CF/CFRANKS/HTML-Widget-1.11.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "02w21rd30cza094m5xs9clzw8ayigbhg2ddzl6jycp4jam0dyhmy";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
perlTestNoWarnings perlClassAccessor perlClassAccessorChained
|
|
|
|
perlClassDataAccessor perlModulePluggableFast perlHTMLTree
|
|
|
|
perlHTMLScrubber perlEmailValid perlDateCalc
|
|
|
|
];
|
2008-10-17 15:14:50 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTTPBody = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "HTTP-Body-1.04";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AG/AGRUNDMA/HTTP-Body-1.04.tar.gz;
|
|
|
|
sha256 = "11qxfv2p2bzd5xnl0ypy8l3frssszwrxafipm1fm36sxay2v71js";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlHTTPRequestAsCGI = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "HTTP-Request-AsCGI-0.5";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CH/CHANSEN/HTTP-Request-AsCGI-0.5.tar.gz;
|
|
|
|
sha256 = "164159iiyk0waqayplchkisxg2ldamx8iifrccx32p344714qcrh";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlClassAccessor perlLWP];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlI18NLangTags = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "I18N-LangTags-0.35";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SB/SBURKE/I18N-LangTags-0.35.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0idwfi7k8l44d9akpdj6ygdz3q8zxr690m18s7w23ms9d55bh3jy";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlIODigest = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "IO-Digest-0.10";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/IO-Digest-0.10.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1g6ilxqv2a7spf273v7k0721c6am7pwpjrin3h5zaqxfmd312nav";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlPerlIOviadynamic];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlIOPager = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "IO-Pager-0.06.tgz";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/J/JP/JPIERCE/IO-Pager-0.06.tgz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0r3af4gyjpy0f7bhs7hy5s7900w0yhbckb2dl3a1x5wpv7hcbkjb";
|
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
};
|
|
|
|
|
2008-11-25 13:06:58 +00:00
|
|
|
perlIPCRun = buildPerlPackage {
|
|
|
|
name = "IPC-Run-0.80";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/R/RS/RSOD/IPC-Run-0.80.tar.gz;
|
|
|
|
sha256 = "1lb0skp093ikkjg125l2f8lw7jzawmy4x7h1azgcs0d5miy8apj4";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlJSON = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "JSON-2.12";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MA/MAKAMAKA/JSON-2.12.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0qbxfwvfsx8s50h2dzpb0z7qi22k9ghygfzbfk8v08kkpmrkls47";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlJSONXS];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlJSONAny = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "JSON-Any-1.17";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RB/RBERJON/JSON-Any-1.17.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "07y6zb0vzb4c87k2lflxafb69zc4a29bxhzh6xdcpjhplf4vbifb";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlJSON];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlJSONXS = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "JSON-XS-2.23";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/ML/MLEHMANN/JSON-XS-2.23.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0yd1j5d9b0ymfzfaxyi9zgca3vqwjb3dl8pg14m1qwsx3pidd5j7";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLinguaENInflect = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Lingua-EN-Inflect-1.89";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/D/DC/DCONWAY/Lingua-EN-Inflect-1.89.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1jvj67mvvfqxgxspmblay1c844vvhfwrviiarglkaw6phpg74rby";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLinguaENInflectNumber = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Lingua-EN-Inflect-Number-1.1";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SI/SIMON/Lingua-EN-Inflect-Number-1.1.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "13hlr1srp9cd9mcc78snkng9il8iavvylfyh81iadvn2y7wikwfy";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlLinguaENInflect];
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlListMoreUtils = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "List-MoreUtils-0.22";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/V/VP/VPARSEVAL/List-MoreUtils-0.22.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1dv21xclh6r1cyy19r34xv2w6pc1jb5pwj7b2739m78xhlk8p55l";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLocaleGettext = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "LocaleGettext-1.05";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/P/PV/PVANDRY/gettext-1.05.tar.gz;
|
|
|
|
sha256 = "15262a00vx714szpx8p2z52wxkz46xp7acl72znwjydyq4ypydi7";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLocaleMaketext = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Locale-Maketext-1.13";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/F/FE/FERREIRA/Locale-Maketext-1.13.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0qvrhcs1f28ix3v8hcd5xr4z9s7plz4g5a4q1cjp7bs0c3w2yl6z";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlI18NLangTags];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLocaleMaketextLexicon = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Locale-Maketext-Lexicon-0.66";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AU/AUDREYT/Locale-Maketext-Lexicon-0.66.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1cd2kbcrlyjcmlr7m8kf94mm1hlr7hpv1r80a596f4ljk81f2nvd";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlLocaleMaketext];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLocaleMaketextSimple = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Locale-Maketext-Simple-0.18";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AU/AUDREYT/Locale-Maketext-Simple-0.18.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "14kx7vkxyfqndy90rzavrjp2346aidyc7x5dzzdj293qf8s4q6ig";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlLWP = buildPerlPackage {
|
2008-10-26 21:20:46 +00:00
|
|
|
name = "libwww-perl-5.819";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-26 21:20:46 +00:00
|
|
|
url = mirror://cpan/authors/id/G/GA/GAAS/libwww-perl-5.819.tar.gz;
|
|
|
|
sha256 = "6bc03e9e88213add8436fed020509a7126c6b79c330c3c115cb696fa3b5373ae";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlURI perlHTMLParser perlHTMLTagset];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlMailTools = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "MailTools-2.04";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MA/MARKOV/MailTools-2.04.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0w91rcrz4v0pjdnnv2mvlbrm9ww32f7ajhr7xkjdhhr3455p7adx";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTimeDate perlTestPod];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlMIMETypes = buildPerlPackage {
|
2008-10-18 10:32:59 +01:00
|
|
|
name = "MIME-Types-1.24";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MA/MARKOV/MIME-Types-1.24.tar.gz;
|
2008-10-18 10:32:59 +01:00
|
|
|
sha256 = "1j89kjv9lipv6r3bq6dp0k9b8y1f8z9vrmhi7b8h7cs1yc8g7qz9";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestPod];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlModuleBuild = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Module-Build-0.2808";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/K/KW/KWILLIAMS/Module-Build-0.2808.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1h8zpf4g2n8v47l9apmdqbdgcg039g70w75hpn84m37pmqkbnj8v";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlExtUtilsInstall perlExtUtilsManifest perlTestHarness];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlModuleFind = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Module-Find-0.06";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CR/CRENZ/Module-Find-0.06.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1394jk0rn2zmchpl11kim69xh5h5yzg96jdlf76fqrk3dcn0y2ip";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlMouse = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Mouse-0.09";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/S/SA/SARTAK/Mouse-0.09.tar.gz;
|
|
|
|
sha256 = "1akymbjim6w6i1q8h97izah26ndmcbnl1lwdsw9fa22hnhm0axg0";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlMROCompat = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "MRO-Compat-0.09";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/B/BL/BLBLACK/MRO-Compat-0.09.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "16l37bxd5apax4kyvnadiplz8xmmx76y9pyq9iksqrv0d5rl5vl8";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlNamespaceClean = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "namespace-clean-0.08";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/P/PH/PHAYLON/namespace-clean-0.08.tar.gz;
|
|
|
|
sha256 = "1jwc15zz1j6indqgz64l09ayg0db4gfaasq74x0vyi1yx3d9x2yx";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlScopeGuard];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlNetDNS = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Net-DNS-0.63";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/O/OL/OLAF/Net-DNS-0.63.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1pswrwhkav051xahm3k4cbyhi8kqpfmaz85lw44kwi2wc7mz4prk";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlNetIP perlDigestHMAC];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlNetIP = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Net-IP-1.25";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MA/MANU/Net-IP-1.25.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1iv0ka6d8kp9iana6zn51sxbcmz2h3mbn6cd8pald36q5whf5mjc";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlObjectSignature = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Object-Signature-1.05";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AD/ADAMK/Object-Signature-1.05.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "10k9j18jpb16brv0hs7592r7hx877290pafb8gnk6ydy7hcq9r2j";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlParent = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "parent-0.221";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CO/CORION/parent-0.221.tar.gz;
|
|
|
|
sha256 = "17jhscpa5p5szh1173pd6wvh2m05an1l941zqq9jkw9bzgk12hm0";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlPathClass = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Path-Class-0.16";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/K/KW/KWILLIAMS/Path-Class-0.16.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0zisxkj58jm84fwcssmdq8g6n37s33v5h7j28m12sbkqib0h76gc";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlPerlIOeol = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "PerlIO-eol-0.14";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AU/AUDREYT/PerlIO-eol-0.14.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1rwj0r075jfvvd0fnzgdqldc7qdb94wwsi21rs2l6yhcv0380fs2";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlPerlIOviadynamic = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "PerlIO-via-dynamic-0.12";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/PerlIO-via-dynamic-0.12.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "140hay9q8q9sz1fa2s57ijp5l2448fkcg7indgn6k4vc7yshmqz2";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlPerlIOviasymlink = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "PerlIO-via-symlink-0.05";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/PerlIO-via-symlink-0.05.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0lidddcaz9anddqrpqk4zwm550igv6amdhj86i2jjdka9b1x81s1";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlModulePluggable = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "Module-Pluggable-3.5";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/S/SI/SIMONW/Module-Pluggable-3.5.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "08rywi79pqn2c8zr17fmd18lpj5hm8lxd1j4v2k002ni8vhl43nv";
|
|
|
|
};
|
|
|
|
patches = [
|
2008-10-24 00:48:24 +01:00
|
|
|
# !!! merge this patch into Perl itself (which contains Module::Pluggable as well)
|
2007-12-30 22:02:04 +00:00
|
|
|
../development/perl-modules/module-pluggable.patch
|
|
|
|
];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlModulePluggableFast = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Module-Pluggable-Fast-0.18";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SR/SRI/Module-Pluggable-Fast-0.18.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "140c311x2darrc2p1drbkafv7qwhzdcff4ad300n6whsx4dfp6wr";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlUNIVERSALrequire];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlPodEscapes = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Pod-Escapes-1.04";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SB/SBURKE/Pod-Escapes-1.04.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1wrg5dnsl785ygga7bp6qmakhjgh9n4g3jp2l85ab02r502cagig";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlPodSimple = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Pod-Simple-3.05";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AR/ARANDAL/Pod-Simple-3.05.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1j0kqcvr9ykcqlkr797j1npkbggykb3p4w5ri73s8mi163lzxkqb";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlconstant perlPodEscapes];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlReturnValue = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "Return-Value-1.302";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/R/RJ/RJBS/Return-Value-1.302.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "0hf5rmfap49jh8dnggdpvapy5r4awgx5hdc3acc9ff0vfqav8azm";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlScopeGuard = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Scope-Guard-0.03";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CH/CHOCOLATE/Scope-Guard-0.03.tar.gz;
|
|
|
|
sha256 = "07x966fkqxlwnngxs7a2jrhabh8gzhjfpqq56n9gkwy7f340sayb";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSetObject = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Set-Object-1.26";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SA/SAMV/Set-Object-1.26.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1hx3wrw8xkvaggacc8zyn86hfi3079ahmia1n8vsw7dglp1bbhmj";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSQLAbstract = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "SQL-Abstract-1.24";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MS/MSTROUT/SQL-Abstract-1.24.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0vnpnca9cahnk0zgzqkngcwyzjqnckar0jwp3vyhj9hcaylirnvg";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSQLAbstractLimit = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "SQL-Abstract-Limit-0.12";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/D/DA/DAVEBAIRD/SQL-Abstract-Limit-0.12.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1b8663l7myc54k40xmyq003v6xs1y6bhdm1jpahrv44wzcl60n7z";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlSQLAbstract perlTestException perlDBI];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlStringMkPasswd = buildPerlPackage {
|
2008-02-12 12:40:57 +00:00
|
|
|
name = "String-MkPasswd-0.02";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/C/CG/CGRAU/String-MkPasswd-0.02.tar.gz;
|
2008-02-12 12:40:57 +00:00
|
|
|
sha256 = "0si4xfgf8c2pfag1cqbr9jbyvg3hak6wkmny56kn2qwa4ljp9bk6";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSubUplevel = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Sub-Uplevel-0.2002";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.2002.tar.gz;
|
|
|
|
sha256 = "19b2b9xsw7lvvkcmmnhhv8ybxdkbnrky9nnqgjridr108ww9m5rh";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSVK = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "SVK-v2.0.2";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/SVK-v2.0.2.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0c4m2q7cvzwh9kk1nc1vd8lkxx2kss5nd4k20dpkal4c7735jns0";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlAlgorithmDiff perlAlgorithmAnnotate perlAppCLI perlClassDataInheritable perlDataHierarchy perlEncode perlFileTemp perlIODigest perlListMoreUtils perlPathClass perlPerlIOeol perlPerlIOviadynamic perlPerlIOviasymlink perlPodEscapes perlPodSimple perlSVNMirror perlTimeHiRes perlUNIVERSALrequire perlURI perlYAMLSyck perlClassAutouse perlIOPager perlLocaleMaketextLexicon perlFreezeThaw];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSVNMirror = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "SVN-Mirror-0.73";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/SVN-Mirror-0.73.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1scjaq7qjz6jlsk1c2l5q15yxf0sqbydvf22mb2xzy1bzaln0x2c";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlClassAccessor perlFilechdir subversion perlURI perlTermReadKey perlTimeDate perlSVNSimple];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlSVNSimple = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "SVN-Simple-0.27";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CL/CLKAO/SVN-Simple-0.27.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0p7p52ja6sf4j0w3b05i0bbqi5wiambckw2m5dsr63bbmlhv4a71";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [subversion];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTaskCatalystTutorial = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Task-Catalyst-Tutorial";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/J/JR/JROCKWAY/Task-Catalyst-Tutorial-0.03.tar.gz;
|
|
|
|
sha256 = "1f9nqg8h455s8dah482hf78i3h2bilji26i5m3lzr2cxws98lsak";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
2008-10-20 04:58:49 +01:00
|
|
|
perlCatalystRuntime perlCatalystManual perlCatalystDevel
|
|
|
|
perlCatalystPluginSession perlCatalystPluginAuthentication
|
|
|
|
perlCatalystPluginAuthenticationStoreDBIC
|
|
|
|
perlCatalystPluginAuthorizationRoles
|
|
|
|
perlCatalystPluginAuthorizationACL
|
|
|
|
perlCatalystPluginHTMLWidget
|
|
|
|
perlCatalystPluginSessionStoreFastMmap
|
|
|
|
perlCatalystPluginStackTrace
|
|
|
|
perlCatalystViewTT
|
2008-10-24 00:48:24 +01:00
|
|
|
perlDBIxClass perlDBIxClassHTMLWidget
|
2008-10-17 15:14:50 +01:00
|
|
|
];
|
2008-10-20 04:58:49 +01:00
|
|
|
preConfigure = ''
|
2008-10-23 15:22:36 +01:00
|
|
|
substituteInPlace Makefile.PL --replace "'Catalyst::Manual' => 0," ""
|
2008-10-20 04:58:49 +01:00
|
|
|
'';
|
2008-10-23 15:22:36 +01:00
|
|
|
};
|
2008-10-17 15:14:50 +01:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTaskWeaken = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Task-Weaken-1.02";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/A/AD/ADAMK/Task-Weaken-1.02.tar.gz;
|
|
|
|
sha256 = "10f9kd1lwbscmmjwgbfwa4kkp723mb463lkbmh29rlhbsl7kb5wz";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTemplateTimer = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Template-Timer-0.04";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/P/PE/PETDANCE/Template-Timer-0.04.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0j0gmxbq1svp0rb4kprwj2fk2mhl07yah08bksfz0a0pfz6lsam4";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTemplateToolkit];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTemplateToolkit = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Template-Toolkit-2.20";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/A/AB/ABW/Template-Toolkit-2.20.tar.gz;
|
|
|
|
sha256 = "13wbh06a76k4ag14lhszmpwv4hb8hlj1d9glizhp8izazl3xf1zg";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlAppConfig];
|
2008-11-28 16:10:32 +00:00
|
|
|
patches = [
|
|
|
|
# Needed to make TT works properly on templates in the Nix store.
|
|
|
|
../development/perl-modules/template-toolkit-nix-store.patch
|
|
|
|
];
|
2008-10-17 15:14:50 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTermReadKey = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "TermReadKey-2.30";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/J/JS/JSTOWE/TermReadKey-2.30.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
md5 = "f0ef2cea8acfbcc58d865c05b0c7e1ff";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestDeep = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Test-Deep-0.103";
|
2008-05-30 19:15:25 +01:00
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/F/FD/FDALY/Test-Deep-0.103.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0cdl08k5v0wc9w20va5qw98ynlbs9ifwndgsix8qhi7h15sj8a5j";
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
propagatedBuildInputs = [perlTestTester perlTestNoWarnings];
|
|
|
|
postInstall = "ensureDir $out/lib/site_perl; mv $out/lib/5.* $out/lib/site_perl";
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestException = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Test-Exception-0.27";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AD/ADIE/Test-Exception-0.27.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1s921j7yv2szywd1ffi6yz3ngrbq97f9dh38bvvajqnm29g1xb9j";
|
|
|
|
};
|
2008-10-20 04:58:49 +01:00
|
|
|
propagatedBuildInputs = [perlTestHarness perlTestSimple perlSubUplevel];
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestHarness = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Test-Harness-3.10";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AN/ANDYA/Test-Harness-3.10.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1qd217yzppj1vbjhny06v8niqhz85pam996ry6bzi08z0jidr2wh";
|
|
|
|
};
|
2008-10-17 15:14:50 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestMockObject = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Test-MockObject-1.09";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CH/CHROMATIC/Test-MockObject-1.09.tar.gz;
|
|
|
|
sha256 = "1cz385x0jrkj84nmfs6qyzwwvv8m9v8r2isagfj1zxvhdw49wdyy";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestException perlUNIVERSALisa perlUNIVERSALcan];
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestNoWarnings = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Test-NoWarnings-0.084";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/F/FD/FDALY/Test-NoWarnings-0.084.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "19g47pa3brr9px3jnwziapvxcnghqqjjwxz1jfch4asawpdx2s8b";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestTester];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestPod = buildPerlPackage {
|
2008-10-18 10:32:59 +01:00
|
|
|
name = "Test-Pod-1.26";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/P/PE/PETDANCE/Test-Pod-1.26.tar.gz;
|
2008-10-18 10:32:59 +01:00
|
|
|
sha256 = "025rviipiaa1rf0bp040jlwaxwvx48kdcjriaysvkjpyvilwvqd4";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestSimple = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Test-Simple-0.84";
|
2008-05-30 19:15:25 +01:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MS/MSCHWERN/Test-Simple-0.84.tar.gz;
|
|
|
|
sha256 = "030j47q3p46jfk60dsh2d5m7ip4nqz0fl4inqr8hx8b8q0f00r4l";
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestHarness];
|
2008-10-20 04:58:49 +01:00
|
|
|
postInstall = "ensureDir $out/lib/site_perl; mv $out/lib/5.* $out/lib/site_perl";
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestTester = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Test-Tester-0.107";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/F/FD/FDALY/Test-Tester-0.107.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0qgmsl6s6xm39211lywyzwrlz0gcmax7fb8zipybs9yxfmwcvyx2";
|
|
|
|
};
|
|
|
|
postInstall = "ensureDir $out/lib/site_perl; mv $out/lib/5.* $out/lib/site_perl";
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTestWarn = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Test-Warn-0.11";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CH/CHORNY/Test-Warn-0.11.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "1y9g13bzvjsmg5v555zrl7w085jq40a47hfs4gc3k78s0bkwxbyi";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestSimple perlTestException perlArrayCompare perlTreeDAGNode];
|
2008-05-30 19:15:25 +01:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTextSimpleTable = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Text-SimpleTable-0.05";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/S/SR/SRI/Text-SimpleTable-0.05.tar.gz;
|
|
|
|
sha256 = "028pdfmr2gnaq8w3iar8kqvrpxcghnag8ls7h4227l9zbxd1k9p9";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTieUseOk = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Test-use-ok-0.02";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/A/AU/AUDREYT/Test-use-ok-0.02.tar.gz;
|
|
|
|
sha256 = "11inaxiavb35k8zwxwbfbp9wcffvfqas7k9idy822grn2sz5gyig";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTieToObject = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Tie-ToObject-0.03";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/N/NU/NUFFIN/Tie-ToObject-0.03.tar.gz;
|
|
|
|
sha256 = "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTieUseOk];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTimeDate = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "TimeDate-1.16";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/G/GB/GBARR/TimeDate-1.16.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1cvcpaghn7dc14m9871sfw103g3m3a00m2mrl5iqb0mmh40yyhkr";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTimeHiRes = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "Time-HiRes-1.9715";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-1.9715.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0pgqrfkysy3mdcx5nd0x8c80lgqb7rkb3nrkii3vc576dcbpvw0i";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTreeDAGNode = buildPerlPackage {
|
2008-10-20 04:58:49 +01:00
|
|
|
name = "Tree-DAG_Node-1.06";
|
|
|
|
src = fetchurl {
|
2008-10-22 20:25:35 +01:00
|
|
|
url = mirror://cpan/authors/id/C/CO/COGENT/Tree-DAG_Node-1.06.tar.gz;
|
2008-10-20 04:58:49 +01:00
|
|
|
sha256 = "0anvwfh4vqj41ipq52p65sqlvw3rvm6cla5hbws13gyk9mvp09ah";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTreeSimple = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Tree-Simple-1.18";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/S/ST/STEVAN/Tree-Simple-1.18.tar.gz;
|
|
|
|
sha256 = "0bb2hc8q5rwvz8a9n6f49kzx992cxczmrvq82d71757v087dzg6g";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTestException];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlTreeSimpleVisitorFactory = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "Tree-Simple-VisitorFactory-0.10";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/S/ST/STEVAN/Tree-Simple-VisitorFactory-0.10.tar.gz;
|
|
|
|
sha256 = "1ghcgnb3xvqjyh4h4aa37x98613aldnpj738z9b80p33bbfxq158";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlTreeSimple];
|
|
|
|
buildInputs = [perlTestException];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlFontTTF = buildPerlPackage {
|
|
|
|
name = "perl-Font-TTF-0.43";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/M/MH/MHOSKEN/Font-TTF-0.43.tar.gz;
|
|
|
|
sha256 = "0782mj5n5a2qbghvvr20x51llizly6q5smak98kzhgq9a7q3fg89";
|
|
|
|
};
|
2008-03-02 18:41:32 +00:00
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlUNIVERSALcan = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "UNIVERSAL-can-1.12";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CH/CHROMATIC/UNIVERSAL-can-1.12.tar.gz;
|
|
|
|
sha256 = "1abadbgcy11cmlmj9qf1v73ycic1qhysxv5xx81h8s4p81alialr";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlUNIVERSALisa = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "UNIVERSAL-isa-1.00";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/C/CH/CHROMATIC/UNIVERSAL-isa-1.00_00.tar.gz;
|
|
|
|
sha256 = "04dj0z458k57l3phmq635bdmj3zzl2iy5dxp3yqaldc6g65wz0d0";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlUNIVERSALrequire = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "UNIVERSAL-require-0.11";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MS/MSCHWERN/UNIVERSAL-require-0.11.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "1rh7i3gva4m96m31g6yfhlqcabszhghbb3k3qwxbgx3mkf5s6x6i";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlURI = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "URI-1.35";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/G/GA/GAAS/URI-1.35.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
md5 = "1a933b1114c41a25587ee59ba8376f7c";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLDOM = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "XML-DOM-1.44";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/T/TJ/TJMATHER/XML-DOM-1.44.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "1r0ampc88ni3sjpzr583k86076qg399arfm9xirv3cw49k3k5bzn";
|
|
|
|
};
|
2008-03-17 09:41:28 +00:00
|
|
|
#buildInputs = [libxml2];
|
2007-12-30 22:02:04 +00:00
|
|
|
propagatedBuildInputs = [perlXMLRegExp perlXMLParser perlLWP];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLLibXML = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "XML-LibXML-1.66";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/P/PA/PAJAS/XML-LibXML-1.66.tar.gz;
|
|
|
|
sha256 = "1a0bdiv3px6igxnbbjq10064iahm8f5i310p4y05w6zn5d51awyl";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
|
|
|
propagatedBuildInputs = [perlXMLLibXMLCommon perlXMLSAX];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLLibXMLCommon = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "XML-LibXML-Common-0.13";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/P/PH/PHISH/XML-LibXML-Common-0.13.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
md5 = "13b6d93f53375d15fd11922216249659";
|
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLNamespaceSupport = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "XML-NamespaceSupport-1.09";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/R/RB/RBERJON/XML-NamespaceSupport-1.09.tar.gz;
|
|
|
|
sha256 = "0ny2i4pf6j8ggfj1x02rm5zm9a37hfalgx9w9kxnk69xsixfwb51";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
buildInputs = [];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLParser = buildPerlPackage {
|
|
|
|
name = "XML-Parser-2.36";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://cpan/authors/id/M/MS/MSERGEANT/XML-Parser-2.36.tar.gz;
|
|
|
|
sha256 = "0gyp5qfbflhkin1zv8l6wlkjwfjvsf45a3py4vc6ni82fj32kmcz";
|
|
|
|
};
|
|
|
|
makeMakerFlags = "EXPATLIBPATH=${expat}/lib EXPATINCPATH=${expat}/include";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLRegExp = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "XML-RegExp-0.03";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/T/TJ/TJMATHER/XML-RegExp-0.03.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "1gkarylvdk3mddmchcwvzq09gpvx5z26nybp38dg7mjixm5bs226";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLSAX = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "XML-SAX-0.96";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/G/GR/GRANTM/XML-SAX-0.96.tar.gz;
|
|
|
|
sha256 = "024fbjgg6s87j0y3yik55plzf7d6qpn7slwd03glcb54mw9zdglv";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLNamespaceSupport];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLSimple = buildPerlPackage {
|
2008-04-11 12:49:14 +01:00
|
|
|
name = "XML-Simple-2.18";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-04-11 12:49:14 +01:00
|
|
|
url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.18.tar.gz;
|
|
|
|
sha256 = "09k8fvc9m5nd5rqq00rwm3m0wx7iwd6vx0vc947y58ydi30nfjd5";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLTwig = buildPerlPackage {
|
2008-10-17 15:14:50 +01:00
|
|
|
name = "XML-Twig-3.32";
|
2007-12-30 22:02:04 +00:00
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/M/MI/MIROD/XML-Twig-3.32.tar.gz;
|
|
|
|
sha256 = "07zdsfzw9dlrx6ril9clf1jfif09vpf27rz66laja7mvih9izd1v";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [perlXMLParser];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXMLWriter = buildPerlPackage {
|
2007-12-30 22:02:04 +00:00
|
|
|
name = "XML-Writer-0.602";
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-0.602.tar.gz;
|
2007-12-30 22:02:04 +00:00
|
|
|
sha256 = "0kdi022jcn9mwqsxy2fiwl2cjlid4x13r038jvi426fhjknl11nl";
|
|
|
|
};
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlXSLoader = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "XSLoader-0.08";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/S/SA/SAPER/XSLoader-0.08.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "0mr4l3givrpyvz1kg0kap2ds8g0rza2cim9kbnjy8hi64igkixi5";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlYAML = buildPerlPackage {
|
2008-05-31 08:26:13 +01:00
|
|
|
name = "YAML-0.66";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/I/IN/INGY/YAML-0.66.tar.gz;
|
2008-05-31 08:26:13 +01:00
|
|
|
sha256 = "1pcjf6y3l88ypa52mkk349jglabm53mhxda4p5awc1jl67lx3ngw";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2008-11-24 10:24:51 +00:00
|
|
|
perlYAMLSyck = buildPerlPackage {
|
2008-05-30 19:15:25 +01:00
|
|
|
name = "YAML-Syck-1.04";
|
|
|
|
src = fetchurl {
|
2008-10-17 15:14:50 +01:00
|
|
|
url = mirror://cpan/authors/id/A/AU/AUDREYT/YAML-Syck-1.04.tar.gz;
|
2008-05-30 19:15:25 +01:00
|
|
|
sha256 = "180w77rxqwrfmd2jjmrd407bf8vnpry73941g5n61ippzic5x1v3";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DEVELOPMENT / PYTHON MODULES
|
2007-12-13 22:15:03 +00:00
|
|
|
|
|
|
|
|
2008-08-29 14:53:28 +01:00
|
|
|
foursuite = import ../development/python-modules/4suite {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
bsddb3 = import ../development/python-modules/bsddb3 {
|
|
|
|
inherit fetchurl stdenv python db4;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
flup = builderDefsPackage (selectVersion ../development/python-modules/flup "r2311")
|
|
|
|
(let python=python25; in
|
2008-06-12 16:59:59 +01:00
|
|
|
{
|
|
|
|
inherit python;
|
2008-11-04 21:24:10 +00:00
|
|
|
setuptools = setuptools.passthru.function {inherit python;};
|
2008-08-14 23:04:30 +01:00
|
|
|
});
|
2008-06-12 16:59:59 +01:00
|
|
|
|
2008-10-06 19:56:47 +01:00
|
|
|
numeric = import ../development/python-modules/numeric {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pil = import ../development/python-modules/pil {
|
2008-08-12 16:43:36 +01:00
|
|
|
inherit fetchurl stdenv python zlib libjpeg freetype;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
psyco = import ../development/python-modules/psyco {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pycairo = import ../development/python-modules/pycairo {
|
|
|
|
inherit fetchurl stdenv python pkgconfig cairo x11;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pycrypto = import ../development/python-modules/pycrypto {
|
|
|
|
inherit fetchurl stdenv python gmp;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pygame = import ../development/python-modules/pygame {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv python pkgconfig SDL SDL_image
|
2008-10-06 23:47:20 +01:00
|
|
|
SDL_mixer SDL_ttf numeric;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pygobject = import ../development/python-modules/pygobject {
|
|
|
|
inherit fetchurl stdenv python pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pygtk = import ../development/python-modules/pygtk {
|
|
|
|
inherit fetchurl stdenv python pkgconfig pygobject pycairo;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-12 16:40:01 +01:00
|
|
|
pyopengl = import ../development/python-modules/pyopengl {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit fetchurl stdenv setuptools mesa freeglut pil python;
|
2008-08-12 16:40:01 +01:00
|
|
|
};
|
|
|
|
|
2008-10-05 19:37:09 +01:00
|
|
|
pysqlite = import ../development/python-modules/pysqlite {
|
|
|
|
inherit stdenv fetchurl python sqlite;
|
|
|
|
};
|
|
|
|
|
2008-05-25 21:43:56 +01:00
|
|
|
pythonSip = builderDefsPackage (selectVersion ../development/python-modules/python-sip "4.7.4") {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit python;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-25 21:43:56 +01:00
|
|
|
|
|
|
|
pyqt = builderDefsPackage (selectVersion ../development/python-modules/pyqt "4.3.3") {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit pkgconfig python pythonSip;
|
2008-05-25 21:43:56 +01:00
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
qt = qt4;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-25 21:43:56 +01:00
|
|
|
|
2008-06-01 17:06:18 +01:00
|
|
|
pyx = import ../development/python-modules/pyx {
|
|
|
|
inherit fetchurl stdenv python makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-02-22 13:53:45 +00:00
|
|
|
pyxml = import ../development/python-modules/pyxml {
|
|
|
|
inherit fetchurl stdenv python makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-06-12 16:59:59 +01:00
|
|
|
setuptools = builderDefsPackage (selectVersion ../development/python-modules/setuptools "0.6c8") {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit python;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-12 16:59:59 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxPython = wxPython26;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxPython26 = import ../development/python-modules/wxPython/2.6.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig python;
|
|
|
|
wxGTK = wxGTK26;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wxPython28 = import ../development/python-modules/wxPython/2.8.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig python;
|
|
|
|
wxGTK = wxGTK28;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
twisted = import ../development/python-modules/twisted {
|
2008-09-19 11:07:36 +01:00
|
|
|
inherit fetchurl stdenv python ZopeInterface makeWrapper;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ZopeInterface = import ../development/python-modules/ZopeInterface {
|
|
|
|
inherit fetchurl stdenv python;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-29 14:53:28 +01:00
|
|
|
zope = import ../development/python-modules/zope {
|
2008-09-19 15:39:57 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
python = python24;
|
2008-08-29 14:53:28 +01:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### SERVERS
|
2007-12-13 22:15:03 +00:00
|
|
|
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
apacheHttpd = import ../servers/http/apache-httpd {
|
2008-10-06 14:38:45 +01:00
|
|
|
inherit fetchurl stdenv perl openssl zlib apr aprutil pcre;
|
2007-12-30 22:02:04 +00:00
|
|
|
sslSupport = true;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-12 19:10:08 +01:00
|
|
|
bind = builderDefsPackage (selectVersion ../servers/dns/bind "9.5.0") {
|
|
|
|
inherit openssl libtool;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-12 19:10:08 +01:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
dict = composedArgsAndFun (selectVersion ../servers/dict "1.9.15") {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit builderDefs which bison;
|
2008-06-18 23:48:34 +01:00
|
|
|
flex=flex2534;
|
2008-03-06 04:39:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dictdDBs = recurseIntoAttrs (import ../servers/dict/dictd-db.nix {
|
|
|
|
inherit builderDefs;
|
|
|
|
});
|
|
|
|
|
2008-03-07 06:11:08 +00:00
|
|
|
dictDBCollector = import ../servers/dict/dictd-db-collector.nix {
|
|
|
|
inherit stdenv lib dict;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
dovecot = import ../servers/mail/dovecot {
|
2008-06-30 22:11:07 +01:00
|
|
|
inherit fetchurl stdenv openssl pam;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2008-07-01 15:40:53 +01:00
|
|
|
dovecot_1_1_1 = import ../servers/mail/dovecot/1.1.1.nix {
|
|
|
|
inherit fetchurl stdenv openssl pam;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-01-23 10:06:07 +00:00
|
|
|
ejabberd = import ../servers/xmpp/ejabberd {
|
|
|
|
inherit fetchurl stdenv expat erlang zlib openssl;
|
|
|
|
};
|
|
|
|
|
2008-01-28 19:51:14 +00:00
|
|
|
fingerd_bsd = import ../servers/fingerd/bsd-fingerd {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv;
|
2008-01-28 19:51:14 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ircdHybrid = import ../servers/irc/ircd-hybrid {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv openssl zlib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-01-23 12:25:08 +00:00
|
|
|
jboss = import ../servers/http/jboss {
|
|
|
|
inherit fetchurl stdenv jdk5 jdk;
|
|
|
|
};
|
|
|
|
|
2008-01-29 11:11:26 +00:00
|
|
|
jboss_mysql_jdbc = import ../servers/http/jboss/jdbc/mysql {
|
|
|
|
inherit stdenv jboss mysql_jdbc;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
jetty = import ../servers/http/jetty {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2008-02-26 09:26:17 +00:00
|
|
|
jetty61 = import ../servers/http/jetty/6.1 {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2008-09-24 01:42:50 +01:00
|
|
|
lighttpd = import ../servers/http/lighttpd {
|
|
|
|
inherit fetchurl stdenv pcre libxml2 zlib attr bzip2;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mod_python = import ../servers/http/apache-modules/mod_python {
|
|
|
|
inherit fetchurl stdenv apacheHttpd python;
|
|
|
|
};
|
2007-11-11 16:19:00 +00:00
|
|
|
|
2008-11-30 09:06:53 +00:00
|
|
|
nginx = builderDefsPackage (import ../servers/http/nginx) {
|
|
|
|
inherit openssl pcre zlib libxml2 libxslt;
|
|
|
|
};
|
|
|
|
|
2008-06-13 05:31:31 +01:00
|
|
|
postfix = import ../servers/mail/postfix {
|
2008-06-30 22:11:07 +01:00
|
|
|
inherit fetchurl stdenv db4 openssl cyrus_sasl;
|
2008-06-13 05:31:31 +01:00
|
|
|
glibc = stdenv.glibc;
|
|
|
|
};
|
|
|
|
|
2008-01-23 14:40:03 +00:00
|
|
|
tomcat_connectors = import ../servers/http/apache-modules/tomcat-connectors {
|
|
|
|
inherit fetchurl stdenv apacheHttpd jdk;
|
|
|
|
};
|
|
|
|
|
2008-03-15 23:39:18 +00:00
|
|
|
# This function is typically called by the NixOS Upstart job to specify the
|
|
|
|
# right UID/GID for `portmap'.
|
|
|
|
makePortmap = { daemonUser ? false, daemonGID ? false, daemonUID ? false }:
|
|
|
|
(import ../servers/portmap {
|
|
|
|
inherit fetchurl stdenv lib tcpWrapper
|
|
|
|
daemonUser daemonGID daemonUID;
|
|
|
|
});
|
|
|
|
|
|
|
|
portmap = (makePortmap);
|
2008-03-15 22:51:46 +00:00
|
|
|
|
2008-02-25 03:16:07 +00:00
|
|
|
mysql4 = import ../servers/sql/mysql {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv ncurses zlib perl;
|
|
|
|
ps = procps; /* !!! Linux only */
|
|
|
|
};
|
2007-11-11 16:22:29 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mysql5 = import ../servers/sql/mysql5 {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit fetchurl stdenv ncurses zlib perl openssl;
|
2007-12-30 22:02:04 +00:00
|
|
|
ps = procps; /* !!! Linux only */
|
|
|
|
};
|
2007-11-11 16:17:21 +00:00
|
|
|
|
2008-02-25 03:16:07 +00:00
|
|
|
mysql = mysql5;
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mysql_jdbc = import ../servers/sql/mysql/jdbc {
|
|
|
|
inherit fetchurl stdenv ant;
|
|
|
|
};
|
2005-09-07 15:57:30 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
nagios = import ../servers/monitoring/nagios {
|
|
|
|
inherit fetchurl stdenv perl gd libpng zlib;
|
|
|
|
gdSupport = true;
|
|
|
|
};
|
2007-02-26 23:10:25 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
nagiosPluginsOfficial = import ../servers/monitoring/nagios/plugins/official {
|
|
|
|
inherit fetchurl stdenv openssh;
|
|
|
|
};
|
2005-08-13 22:35:49 +01:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
openfire = composedArgsAndFun (selectVersion ../servers/xmpp/openfire "3.5.2") {
|
2008-02-21 16:24:44 +00:00
|
|
|
inherit builderDefs jre;
|
|
|
|
};
|
|
|
|
|
2008-02-10 17:41:23 +00:00
|
|
|
postgresql = selectVersion ../servers/sql/postgresql "8.3.0" {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv readline ncurses zlib;
|
|
|
|
};
|
2006-06-17 23:04:42 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
postgresql_jdbc = import ../servers/sql/postgresql/jdbc {
|
|
|
|
inherit fetchurl stdenv ant;
|
|
|
|
};
|
2005-01-19 22:51:27 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
samba = import ../servers/samba {
|
2008-01-28 19:46:27 +00:00
|
|
|
inherit stdenv fetchurl readline openldap pam kerberos popt iniparser
|
2008-03-17 09:41:28 +00:00
|
|
|
libunwind acl fam;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-11-12 14:52:16 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
squid = import ../servers/squid {
|
2008-01-16 03:29:56 +00:00
|
|
|
inherit fetchurl stdenv mkDerivationByConfiguration perl lib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-08-13 10:46:54 +01:00
|
|
|
|
2008-05-15 18:51:41 +01:00
|
|
|
squidHead = import ../servers/squid/3.head.nix {
|
|
|
|
inherit fetchurl stdenv mkDerivationByConfiguration perl lib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
tomcat5 = import ../servers/http/tomcat {
|
|
|
|
inherit fetchurl stdenv jdk;
|
|
|
|
};
|
2005-03-09 17:49:19 +00:00
|
|
|
|
2008-01-30 09:41:33 +00:00
|
|
|
tomcat6 = import ../servers/http/tomcat/6.0.nix {
|
|
|
|
inherit fetchurl stdenv jdk;
|
|
|
|
};
|
|
|
|
|
2008-08-04 13:04:24 +01:00
|
|
|
tomcat_mysql_jdbc = import ../servers/http/tomcat/jdbc/mysql {
|
|
|
|
inherit stdenv tomcat6 mysql_jdbc;
|
|
|
|
};
|
|
|
|
|
2008-02-04 12:24:41 +00:00
|
|
|
axis2 = import ../servers/http/tomcat/axis2 {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv jdk apacheAnt unzip;
|
2008-02-04 12:24:41 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
vsftpd = import ../servers/ftp/vsftpd {
|
2008-01-31 14:08:02 +00:00
|
|
|
inherit fetchurl openssl stdenv libcap pam;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-02-26 23:45:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
xorg = recurseIntoAttrs (import ../servers/x11/xorg {
|
|
|
|
inherit fetchurl stdenv pkgconfig freetype fontconfig
|
|
|
|
libxslt expat libdrm libpng zlib perl mesa mesaHeaders
|
2008-02-02 20:42:55 +00:00
|
|
|
xkeyboard_config dbus hal;
|
2007-12-30 22:02:04 +00:00
|
|
|
});
|
2007-12-01 05:56:58 +00:00
|
|
|
|
2008-10-25 08:19:07 +01:00
|
|
|
xorgReplacements = composedArgsAndFun (import ../servers/x11/xorg/replacements.nix) {
|
|
|
|
inherit fetchurl stdenv automake autoconf libtool xorg composedArgsAndFun;
|
|
|
|
};
|
|
|
|
|
2008-06-03 22:59:35 +01:00
|
|
|
zabbixAgent = import ../servers/monitoring/zabbix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
enableServer = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
zabbixServer = import ../servers/monitoring/zabbix {
|
|
|
|
inherit fetchurl stdenv postgresql curl;
|
|
|
|
enableServer = true;
|
|
|
|
};
|
|
|
|
|
2007-11-11 16:15:29 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### OS-SPECIFIC
|
2007-12-05 21:25:47 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# this creates a patch which can be applied to the kernel to integrate this module..
|
|
|
|
kernel_module_acerhk = import ../os-specific/linux/kernel/acerhk {
|
|
|
|
inherit fetchurl stdenv gnupatch;
|
|
|
|
kernel = kernel_2_6_21;
|
|
|
|
debug = true;
|
|
|
|
};
|
2007-10-12 21:33:03 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
_915resolution = import ../os-specific/linux/915resolution {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-01-11 21:55:29 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
nfsUtils = import ../os-specific/linux/nfs-utils {
|
2008-03-30 18:42:49 +01:00
|
|
|
inherit fetchurl stdenv tcpWrapper e2fsprogs;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-03-08 15:44:23 +00:00
|
|
|
|
2008-02-21 20:13:36 +00:00
|
|
|
acpi = import ../os-specific/linux/acpi {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-21 19:57:40 +00:00
|
|
|
acpitool = import ../os-specific/linux/acpitool {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
alsa = composedArgsAndFun (selectVersion ../os-specific/linux/alsa "1.0.16") {
|
2008-02-22 03:06:12 +00:00
|
|
|
inherit fetchurl stdenv ncurses gettext;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-03-08 18:52:35 +00:00
|
|
|
|
2008-02-22 03:06:12 +00:00
|
|
|
alsaLib = alsa.alsaLib;
|
|
|
|
|
|
|
|
alsaUtils = alsa.alsaUtils;
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
blcr = builderDefsPackage (selectVersion ../os-specific/linux/blcr "0.6.5"){
|
2008-04-11 10:32:27 +01:00
|
|
|
inherit perl;
|
|
|
|
};
|
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
blcrCurrent = kernel : (blcr.passthru.function {
|
2008-04-11 10:32:27 +01:00
|
|
|
inherit kernel;
|
2008-08-14 23:04:30 +01:00
|
|
|
});
|
2008-04-11 10:32:27 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
bridge_utils = import ../os-specific/linux/bridge_utils {
|
|
|
|
inherit fetchurl stdenv autoconf automake;
|
|
|
|
};
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2008-11-14 12:34:18 +00:00
|
|
|
cryopid = import ../os-specific/linux/cryopid {
|
|
|
|
inherit fetchurl stdenv zlibStatic;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cramfsswap = import ../os-specific/linux/cramfsswap {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
devicemapper = import ../os-specific/linux/device-mapper {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
dmidecode = composedArgsAndFun (selectVersion ../os-specific/linux/dmidecode "2.9") {
|
2008-01-08 00:18:20 +00:00
|
|
|
inherit fetchurl stdenv builderDefs;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
dietlibc = import ../os-specific/linux/dietlibc {
|
|
|
|
inherit fetchurl glibc;
|
|
|
|
# Dietlibc 0.30 doesn't compile on PPC with GCC 4.1, bus GCC 3.4 works.
|
2007-11-21 15:32:20 +00:00
|
|
|
stdenv = if stdenv.system == "powerpc-linux" then overrideGCC stdenv gcc34 else stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
e2fsprogs = import ../os-specific/linux/e2fsprogs {
|
2008-03-06 16:10:01 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
e3cfsprogs = import ../os-specific/linux/e3cfsprogs {
|
|
|
|
inherit stdenv fetchurl gettext;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
eject = import ../os-specific/linux/eject {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-12-08 12:44:42 +00:00
|
|
|
fbterm = builderDefsPackage (import ../os-specific/linux/fbterm) {
|
|
|
|
inherit fontconfig gpm freetype pkgconfig;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
fuse = import ../os-specific/linux/fuse {
|
|
|
|
inherit fetchurl stdenv utillinux;
|
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
|
2008-02-03 14:43:19 +00:00
|
|
|
fxload = import ../os-specific/linux/fxload {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
genext2fs = import ../os-specific/linux/genext2fs {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-05 21:25:47 +00:00
|
|
|
|
2008-05-21 14:27:41 +01:00
|
|
|
gpm = builderDefsPackage (selectVersion ../servers/gpm "1.20.3pre6") {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit lzma ncurses bison;
|
2008-05-21 14:27:41 +01:00
|
|
|
flex = flex2535;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-21 14:27:41 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
hal = import ../os-specific/linux/hal {
|
|
|
|
inherit fetchurl stdenv pkgconfig python pciutils usbutils expat
|
|
|
|
libusb dbus dbus_glib libvolume_id perl perlXMLParser
|
|
|
|
gettext zlib eject libsmbios udev;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-05 21:25:47 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
hdparm = import ../os-specific/linux/hdparm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2008-04-01 15:02:54 +01:00
|
|
|
|
|
|
|
hibernate = import ../os-specific/linux/hibernate {
|
|
|
|
inherit fetchurl stdenv gawk;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
htop = import ../os-specific/linux/htop {
|
2008-01-29 13:24:40 +00:00
|
|
|
inherit fetchurl stdenv ncurses;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2003-12-03 21:58:16 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
hwdata = import ../os-specific/linux/hwdata {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-07-17 18:08:38 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ifplugd = import ../os-specific/linux/ifplugd {
|
|
|
|
inherit fetchurl stdenv pkgconfig libdaemon;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
initscripts = import ../os-specific/linux/initscripts {
|
|
|
|
inherit fetchurl stdenv popt pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
iproute = import ../os-specific/linux/iproute {
|
|
|
|
inherit fetchurl stdenv flex bison db4;
|
|
|
|
};
|
2003-12-03 21:58:16 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
iputils = import ../os-specific/linux/iputils {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
glibc = stdenv.gcc.libc;
|
|
|
|
kernelHeaders = stdenv.gcc.libc.kernelHeaders;
|
|
|
|
};
|
2007-10-01 16:14:50 +01:00
|
|
|
|
2008-08-15 10:49:43 +01:00
|
|
|
iptables = import ../os-specific/linux/iptables {
|
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2003-12-03 21:58:16 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ipw2200fw = import ../os-specific/linux/firmware/ipw2200 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2003-12-03 21:58:16 +00:00
|
|
|
|
2008-01-12 22:38:37 +00:00
|
|
|
iwlwifi3945ucode = import ../os-specific/linux/firmware/iwlwifi-3945-ucode {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-11-26 13:15:38 +00:00
|
|
|
iwlwifi4965ucodeV1 = import ../os-specific/linux/firmware/iwlwifi-4965-ucode {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
iwlwifi4965ucodeV2 = import ../os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix {
|
2008-02-18 16:15:51 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
jfsrec = builderDefsPackage (selectVersion ../os-specific/linux/jfsrec "svn-7"){
|
2008-03-28 11:16:43 +00:00
|
|
|
inherit boost;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
jfsUtils = builderDefsPackage (selectVersion ../os-specific/linux/jfsutils "1.1.12") {
|
2008-03-27 19:12:14 +00:00
|
|
|
inherit e2fsprogs;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kbd = import ../os-specific/linux/kbd {
|
|
|
|
inherit fetchurl stdenv bison flex;
|
|
|
|
};
|
2007-08-09 18:33:18 +01:00
|
|
|
|
2007-11-19 17:39:19 +00:00
|
|
|
kernelHeaders = kernelHeaders_2_6_23;
|
2006-06-29 13:41:25 +01:00
|
|
|
|
2008-10-06 14:18:02 +01:00
|
|
|
kernelHeaders_2_6_18 = import ../os-specific/linux/kernel-headers/2.6.18.5.nix {
|
|
|
|
inherit fetchurl stdenv unifdef;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernelHeaders_2_6_21 = import ../os-specific/linux/kernel-headers/2.6.21.3.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-08-09 18:33:18 +01:00
|
|
|
|
2008-02-22 18:19:04 +00:00
|
|
|
kernelHeaders_2_6_23 = import ../os-specific/linux/kernel-headers/2.6.23.16.nix {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2004-01-25 08:51:03 +00:00
|
|
|
|
2008-06-05 11:59:41 +01:00
|
|
|
kernelHeaders_2_6_25 = import ../os-specific/linux/kernel-headers/2.6.25.4.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-08 12:49:06 +01:00
|
|
|
kernelHeaders_2_6_26 = import ../os-specific/linux/kernel-headers/2.6.26.2.nix {
|
2008-06-05 11:59:41 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernelHeadersArm = import ../os-specific/linux/kernel-headers-cross {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
cross = "arm-linux";
|
|
|
|
};
|
2004-06-21 21:41:32 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernelHeadersMips = import ../os-specific/linux/kernel-headers-cross {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
cross = "mips-linux";
|
|
|
|
};
|
2004-03-05 10:13:23 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernelHeadersSparc = import ../os-specific/linux/kernel-headers-cross {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
cross = "sparc-linux";
|
|
|
|
};
|
2005-11-04 13:07:22 +00:00
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
/*
|
2008-03-17 09:41:28 +00:00
|
|
|
systemKernel =
|
|
|
|
if getConfig ["kernel" "version"] "2.6.21" == "2.6.22" then kernel_2_6_22 else
|
|
|
|
if getConfig ["kernel" "version"] "2.6.21" == "2.6.23" then kernel_2_6_23 else
|
|
|
|
kernel;
|
2008-05-22 13:01:24 +01:00
|
|
|
*/
|
2007-12-30 22:02:04 +00:00
|
|
|
|
|
|
|
kernel_2_6_20 = import ../os-specific/linux/kernel/linux-2.6.20.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
{ name = "paravirt-nvidia";
|
|
|
|
patch = ../os-specific/linux/kernel/2.6.20-paravirt-nvidia.patch;
|
|
|
|
}
|
|
|
|
{ name = "skas-2.6.20-v9-pre9";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://www.user-mode-linux.org/~blaisorblade/patches/skas3-2.6/skas-2.6.20-v9-pre9/skas-2.6.20-v9-pre9.patch.bz2;
|
|
|
|
md5 = "02e619e5b3aaf0f9768f03ac42753e74";
|
|
|
|
};
|
|
|
|
extraConfig =
|
|
|
|
"CONFIG_PROC_MM=y\n" +
|
|
|
|
"# CONFIG_PROC_MM_DUMPABLE is not set\n";
|
|
|
|
}
|
|
|
|
{ name = "fbsplash-0.9.2-r5-2.6.20-rc6";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/gensplash/archive/fbsplash-0.9.2-r5-2.6.20-rc6.patch;
|
|
|
|
sha256 = "11v4f85f4jnh9sbhqcyn47krb7l1czgzjw3w8wgbq14jm0sp9294";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_SPLASH=y";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernel_2_6_21 = import ../os-specific/linux/kernel/linux-2.6.21.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
{ name = "ext3cow";
|
2008-03-09 20:07:03 +00:00
|
|
|
patch = ../os-specific/linux/kernel/linux-2.6.20.3-ext3cow.patch;
|
2008-06-18 23:48:34 +01:00
|
|
|
extraConfig =
|
2008-03-17 09:41:28 +00:00
|
|
|
"CONFIG_EXT3COW_FS=m\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_XATTR=y\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_POSIX_ACL=y\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_SECURITY=y\n";
|
2007-12-30 22:02:04 +00:00
|
|
|
}
|
2008-06-18 23:48:34 +01:00
|
|
|
/* Commented out because only acer users have need for it..
|
2007-12-30 22:02:04 +00:00
|
|
|
It takes quite a while to create the patch when unpacking the kernel sources only for that task
|
|
|
|
{ name = "acerhk";
|
2007-12-13 22:15:03 +00:00
|
|
|
patch = kernel_module_acerhk + "/acerhk-patch.tar.bz2" ;
|
2008-06-18 23:48:34 +01:00
|
|
|
extraConfig =
|
2008-03-17 09:41:28 +00:00
|
|
|
"CONFIG_ACERHK=m\n";
|
2007-12-30 22:02:04 +00:00
|
|
|
}
|
2007-12-13 22:15:03 +00:00
|
|
|
*/
|
2007-12-30 22:02:04 +00:00
|
|
|
{ name = "paravirt-nvidia";
|
|
|
|
patch = ../os-specific/linux/kernel/2.6.20-paravirt-nvidia.patch;
|
|
|
|
}
|
|
|
|
{ name = "skas-2.6.20-v9-pre9";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://www.user-mode-linux.org/~blaisorblade/patches/skas3-2.6/skas-2.6.20-v9-pre9/skas-2.6.20-v9-pre9.patch.bz2;
|
|
|
|
md5 = "02e619e5b3aaf0f9768f03ac42753e74";
|
|
|
|
};
|
|
|
|
extraConfig =
|
|
|
|
"CONFIG_PROC_MM=y\n" +
|
|
|
|
"# CONFIG_PROC_MM_DUMPABLE is not set\n";
|
|
|
|
}
|
|
|
|
{ name = "fbsplash-0.9.2-r5-2.6.21";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~dsd/genpatches/trunk/2.6.21/4200_fbsplash-0.9.2-r5.patch;
|
|
|
|
sha256 = "00s8074fzsly2zpir885zqkvq267qyzg6vhsn7n1z2v1z78avxd8";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_SPLASH=y";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernel_2_6_22 = import ../os-specific/linux/kernel/linux-2.6.22.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
/*
|
|
|
|
{ name = "ext3cow";
|
2008-03-09 20:07:03 +00:00
|
|
|
patch = ../os-specific/linux/kernel/linux-2.6.20.3-ext3cow.patch;
|
2007-12-30 22:02:04 +00:00
|
|
|
extraConfig =
|
|
|
|
"CONFIG_EXT3COW_FS=m\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_XATTR=y\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_POSIX_ACL=y\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_SECURITY=y\n";
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
{ name = "skas-2.6.20-v9-pre9";
|
2007-12-13 22:15:03 +00:00
|
|
|
patch = fetchurl {
|
2007-12-30 22:02:04 +00:00
|
|
|
url = http://www.user-mode-linux.org/~blaisorblade/patches/skas3-2.6/skas-2.6.20-v9-pre9/skas-2.6.20-v9-pre9.patch.bz2;
|
|
|
|
md5 = "02e619e5b3aaf0f9768f03ac42753e74";
|
2007-12-13 22:15:03 +00:00
|
|
|
};
|
|
|
|
extraConfig =
|
2007-12-30 22:02:04 +00:00
|
|
|
"CONFIG_PROC_MM=y\n" +
|
|
|
|
"# CONFIG_PROC_MM_DUMPABLE is not set\n";
|
|
|
|
}
|
2007-12-13 22:15:03 +00:00
|
|
|
*/
|
2007-12-30 22:02:04 +00:00
|
|
|
{ name = "fbsplash-0.9.2-r5-2.6.21";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~dsd/genpatches/trunk/2.6.22/4200_fbsplash-0.9.2-r5.patch;
|
|
|
|
sha256 = "0822wwlf2dqsap5qslnnp0yl1nbvvvb76l73w2dd8zsyn0bqg3px";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_SPLASH=y";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
extraConfig =
|
|
|
|
lib.optional (getConfig ["kernel" "no_hz"] false) "CONFIG_NO_HZ=y" ++
|
|
|
|
lib.optional (getConfig ["kernel" "timer_stats"] false) "CONFIG_TIMER_STATS=y" ++
|
|
|
|
lib.optional (getConfig ["kernel" "usb_suspend"] false) "CONFIG_USB_SUSPEND=y" ++
|
|
|
|
lib.optional (getConfig ["kernel" "no_irqbalance"] false) "# CONFIG_IRQBALANCE is not set" ++
|
|
|
|
[(getConfig ["kernel" "addConfig"] "")];
|
|
|
|
};
|
|
|
|
|
|
|
|
kernel_2_6_21_ck = import ../os-specific/linux/kernel/linux-2.6.21_ck.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
{ name = "ext3cow";
|
2008-03-09 20:07:03 +00:00
|
|
|
patch = ../os-specific/linux/kernel/linux-2.6.20.3-ext3cow.patch;
|
2007-12-30 22:02:04 +00:00
|
|
|
extraConfig =
|
|
|
|
"CONFIG_EXT3COW_FS=m\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_XATTR=y\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_POSIX_ACL=y\n" +
|
|
|
|
"CONFIG_EXT3COW_FS_SECURITY=y\n";
|
|
|
|
}
|
|
|
|
{ name = "Con Kolivas Patch";
|
|
|
|
patch = ../os-specific/linux/kernel/patch-2.6.21-ck1;
|
|
|
|
}
|
|
|
|
{ name = "paravirt-nvidia";
|
|
|
|
patch = ../os-specific/linux/kernel/2.6.20-paravirt-nvidia.patch;
|
|
|
|
}
|
|
|
|
{ name = "skas-2.6.20-v9-pre9";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://www.user-mode-linux.org/~blaisorblade/patches/skas3-2.6/skas-2.6.20-v9-pre9/skas-2.6.20-v9-pre9.patch.bz2;
|
|
|
|
md5 = "02e619e5b3aaf0f9768f03ac42753e74";
|
|
|
|
};
|
|
|
|
extraConfig =
|
|
|
|
"CONFIG_PROC_MM=y\n" +
|
|
|
|
"# CONFIG_PROC_MM_DUMPABLE is not set\n";
|
|
|
|
}
|
|
|
|
{ name = "fbsplash-0.9.2-r5-2.6.21";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~dsd/genpatches/trunk/2.6.21/4200_fbsplash-0.9.2-r5.patch;
|
|
|
|
sha256 = "00s8074fzsly2zpir885zqkvq267qyzg6vhsn7n1z2v1z78avxd8";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_SPLASH=y";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-04-22 13:01:53 +01:00
|
|
|
kernel_2_6_25 = import ../os-specific/linux/kernel/linux-2.6.25.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
{ name = "fbcondecor-0.9.4-2.6.25-rc6";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-2.6.25-rc6.patch;
|
|
|
|
sha256 = "1wm94n7f0qyb8xvafip15r158z5pzw7zb7q8hrgddb092c6ibmq8";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_CON_DECOR=y";
|
2008-05-22 13:01:24 +01:00
|
|
|
features = { fbConDecor = true; };
|
2008-04-22 13:01:53 +01:00
|
|
|
}
|
2008-05-21 10:19:44 +01:00
|
|
|
{ name = "sec_perm-2.6.24";
|
|
|
|
patch = ../os-specific/linux/kernel/sec_perm-2.6.24.patch;
|
2008-05-22 13:01:24 +01:00
|
|
|
features = { secPermPatch = true; };
|
2008-05-21 10:19:44 +01:00
|
|
|
}
|
2008-04-22 13:01:53 +01:00
|
|
|
];
|
|
|
|
extraConfig =
|
|
|
|
lib.optional (getConfig ["kernel" "timer_stats"] false) "CONFIG_TIMER_STATS=y" ++
|
|
|
|
lib.optional (getConfig ["kernel" "no_irqbalance"] false) "# CONFIG_IRQBALANCE is not set" ++
|
|
|
|
[(getConfig ["kernel" "addConfig"] "")];
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
kernel_2_6_23 = import ../os-specific/linux/kernel/linux-2.6.23.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
2008-02-11 10:22:17 +00:00
|
|
|
/*
|
2007-12-30 22:02:04 +00:00
|
|
|
{ # resume with resume=swap:/dev/xx
|
|
|
|
name = "tux on ice"; # (swsusp2)
|
|
|
|
patch = fetchurl {
|
2008-01-29 01:24:54 +00:00
|
|
|
url = "http://www.tuxonice.net/downloads/all/tuxonice-3.0-rc5-for-2.6.23.14.patch.bz2";
|
|
|
|
sha256 = "187190rxbn9x1c6bwv59mwy1zhff8nn5ad58cfiz23wa5wrk4mif";
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
extraConfig = "
|
|
|
|
CONFIG_SUSPEND2=y
|
|
|
|
CONFIG_SUSPEND2_FILE=y
|
|
|
|
CONFIG_SUSPEND2_SWAP=y
|
|
|
|
CONFIG_CRYPTO_LZF=y
|
|
|
|
";
|
|
|
|
}
|
2008-02-11 10:22:17 +00:00
|
|
|
*/
|
2007-12-30 22:02:04 +00:00
|
|
|
{ name = "fbsplash-0.9.2-r5-2.6.21";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~dsd/genpatches/trunk/2.6.22/4200_fbsplash-0.9.2-r5.patch;
|
|
|
|
sha256 = "0822wwlf2dqsap5qslnnp0yl1nbvvvb76l73w2dd8zsyn0bqg3px";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_SPLASH=y";
|
2008-05-22 13:01:24 +01:00
|
|
|
features = { fbSplash = true; };
|
2007-12-30 22:02:04 +00:00
|
|
|
}
|
2008-02-11 10:22:17 +00:00
|
|
|
/* !!! Not needed anymore for the NixOS LiveCD - we have AUFS. */
|
2008-01-18 22:03:13 +00:00
|
|
|
{ name = "unionfs-2.2.2";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://download.filesystems.org/unionfs/unionfs-2.x/unionfs-2.2.2_for_2.6.23.13.diff.gz;
|
|
|
|
sha256 = "104hahp6fjpxwprcl2njw5mimyh442ma3cp5r1ww0mzq3vwrcdyz";
|
|
|
|
};
|
|
|
|
extraConfig = ''
|
|
|
|
CONFIG_UNION_FS=m
|
|
|
|
CONFIG_UNION_FS_XATTR=y
|
|
|
|
'';
|
|
|
|
}
|
2007-12-30 22:02:04 +00:00
|
|
|
];
|
|
|
|
extraConfig =
|
|
|
|
lib.optional (getConfig ["kernel" "timer_stats"] false) "CONFIG_TIMER_STATS=y" ++
|
|
|
|
lib.optional (getConfig ["kernel" "no_irqbalance"] false) "# CONFIG_IRQBALANCE is not set" ++
|
|
|
|
[(getConfig ["kernel" "addConfig"] "")];
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-07 15:57:10 +01:00
|
|
|
kernel_2_6_26 = import ../os-specific/linux/kernel/linux-2.6.26.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
{ name = "fbcondecor-0.9.4-2.6.25-rc6";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-2.6.25-rc6.patch;
|
|
|
|
sha256 = "1wm94n7f0qyb8xvafip15r158z5pzw7zb7q8hrgddb092c6ibmq8";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_CON_DECOR=y";
|
|
|
|
features = { fbConDecor = true; };
|
|
|
|
}
|
|
|
|
{ name = "sec_perm-2.6.24";
|
|
|
|
patch = ../os-specific/linux/kernel/sec_perm-2.6.24.patch;
|
|
|
|
features = { secPermPatch = true; };
|
|
|
|
}
|
|
|
|
];
|
|
|
|
extraConfig =
|
|
|
|
lib.optional (getConfig ["kernel" "no_irqbalance"] false) "# CONFIG_IRQBALANCE is not set" ++
|
|
|
|
[(getConfig ["kernel" "addConfig"] "")];
|
|
|
|
};
|
|
|
|
|
2008-10-29 12:34:54 +00:00
|
|
|
kernel_2_6_27 = import ../os-specific/linux/kernel/linux-2.6.27.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
kernelPatches = [
|
|
|
|
{ name = "fbcondecor-0.9.4-2.6.27";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-2.6.27.patch;
|
|
|
|
sha256 = "170l9l5fvbgjrr4klqcwbgjg4kwvrrhjpmgbfpqj0scq0s4q4vk6";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_CON_DECOR=y";
|
|
|
|
features = { fbConDecor = true; };
|
|
|
|
}
|
|
|
|
{ name = "sec_perm-2.6.24";
|
|
|
|
patch = ../os-specific/linux/kernel/sec_perm-2.6.24.patch;
|
|
|
|
features = { secPermPatch = true; };
|
|
|
|
}
|
|
|
|
];
|
|
|
|
extraConfig =
|
|
|
|
lib.optional (getConfig ["kernel" "no_irqbalance"] false) "# CONFIG_IRQBALANCE is not set" ++
|
|
|
|
[(getConfig ["kernel" "addConfig"] "")];
|
|
|
|
};
|
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
/* Kernel modules are inherently tied to a specific kernel. So
|
|
|
|
rather than provide specific instances of those packages for a
|
|
|
|
specific kernel, we have a function that builds those packages
|
|
|
|
for a specific kernel. This function can then be called for
|
|
|
|
whatever kernel you're using. */
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
kernelPackagesFor = kernel: rec {
|
|
|
|
|
|
|
|
inherit kernel;
|
|
|
|
|
|
|
|
aufs = import ../os-specific/linux/aufs {
|
|
|
|
inherit fetchurl stdenv kernel;
|
|
|
|
};
|
|
|
|
|
2008-09-12 21:00:00 +01:00
|
|
|
exmap = import ../os-specific/linux/exmap {
|
|
|
|
inherit fetchurl stdenv kernel boost pcre pkgconfig;
|
|
|
|
inherit (gtkLibs) gtkmm;
|
|
|
|
};
|
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
iwlwifi = import ../os-specific/linux/iwlwifi {
|
|
|
|
inherit fetchurl stdenv kernel;
|
|
|
|
};
|
|
|
|
|
2008-11-26 13:15:38 +00:00
|
|
|
iwlwifi4965ucode =
|
|
|
|
(if (builtins.compareVersions kernel.version "2.6.27" == 0)
|
|
|
|
|| (builtins.compareVersions kernel.version "2.6.27" == 1)
|
|
|
|
then iwlwifi4965ucodeV2
|
|
|
|
else iwlwifi4965ucodeV1);
|
|
|
|
|
2008-05-22 20:29:23 +01:00
|
|
|
atheros = composedArgsAndFun (selectVersion ../os-specific/linux/atheros "0.9.4") {
|
2008-06-03 08:41:52 +01:00
|
|
|
inherit fetchurl stdenv builderDefs kernel lib;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-22 20:29:23 +01:00
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
nvidiaDrivers = import ../os-specific/linux/nvidia {
|
2008-06-13 12:58:46 +01:00
|
|
|
inherit stdenv fetchurl kernel xlibs gtkLibs zlib;
|
2008-05-22 13:01:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
wis_go7007 = import ../os-specific/linux/wis-go7007 {
|
|
|
|
inherit fetchurl stdenv kernel ncurses fxload;
|
|
|
|
};
|
|
|
|
|
2008-05-22 20:29:23 +01:00
|
|
|
kqemu = builderDefsPackage (selectVersion ../os-specific/linux/kqemu "1.3.0pre11") {
|
|
|
|
inherit kernel;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-22 20:29:23 +01:00
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
# Actually, klibc builds fine with the static kernelHeaders, but
|
|
|
|
# splashutils expects a klibc with patched headers...
|
2008-08-09 09:40:37 +01:00
|
|
|
klibc = composedArgsAndFun (import ../os-specific/linux/klibc) {
|
2008-05-22 13:01:24 +01:00
|
|
|
inherit fetchurl stdenv perl bison mktemp kernel;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-22 13:01:24 +01:00
|
|
|
|
2008-10-31 04:58:03 +00:00
|
|
|
klibcShrunk = composedArgsAndFun (import ../os-specific/linux/klibc/shrunk.nix) {
|
2008-05-22 13:01:24 +01:00
|
|
|
inherit stdenv klibc;
|
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
splashutils =
|
2008-06-10 17:09:53 +01:00
|
|
|
if kernel.features ? fbSplash then splashutils_13 else
|
2008-08-15 15:18:11 +01:00
|
|
|
if kernel.features ? fbConDecor && system != "x86_64-linux" then splashutils_15 else
|
2008-06-10 17:09:53 +01:00
|
|
|
null;
|
|
|
|
|
|
|
|
splashutils_13 = import ../os-specific/linux/splashutils/1.3.nix {
|
|
|
|
inherit fetchurl stdenv klibc;
|
|
|
|
zlib = zlibStatic;
|
|
|
|
libjpeg = libjpegStatic;
|
|
|
|
};
|
|
|
|
|
|
|
|
splashutils_15 = import ../os-specific/linux/splashutils/1.5.nix {
|
2008-05-22 13:01:24 +01:00
|
|
|
inherit fetchurl stdenv klibc;
|
|
|
|
zlib = zlibStatic;
|
|
|
|
libjpeg = libjpegStatic;
|
|
|
|
};
|
|
|
|
|
|
|
|
ext3cowtools = import ../os-specific/linux/ext3cow-tools {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
kernel_ext3cowpatched = kernel;
|
|
|
|
};
|
|
|
|
|
2008-06-15 12:39:54 +01:00
|
|
|
/* compiles but has to be integrated into the kernel somehow
|
|
|
|
Let's have it uncommented and finish it..
|
|
|
|
*/
|
|
|
|
ndiswrapper = import ../os-specific/linux/ndiswrapper {
|
|
|
|
inherit fetchurl stdenv;
|
2008-06-15 18:30:22 +01:00
|
|
|
inherit kernel perl;
|
2008-06-15 12:39:54 +01:00
|
|
|
};
|
|
|
|
|
2008-05-22 13:01:24 +01:00
|
|
|
ov511 = import ../os-specific/linux/ov511 {
|
|
|
|
inherit fetchurl kernel;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
|
|
|
};
|
|
|
|
|
|
|
|
# State Nix
|
|
|
|
snix = import ../tools/package-management/snix {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit fetchurl stdenv perl curl bzip2 openssl bison;
|
2008-05-22 13:01:24 +01:00
|
|
|
inherit libtool automake autoconf docbook5 docbook5_xsl libxslt docbook_xml_dtd_43 w3m;
|
|
|
|
|
|
|
|
aterm = aterm242fixes;
|
|
|
|
db4 = db45;
|
|
|
|
|
|
|
|
flex = flex2533;
|
|
|
|
|
|
|
|
inherit ext3cowtools e3cfsprogs rsync;
|
|
|
|
ext3cow_kernel = kernel;
|
|
|
|
};
|
|
|
|
|
2008-09-05 08:26:37 +01:00
|
|
|
sysprof = import ../development/tools/profiling/sysprof {
|
|
|
|
inherit fetchurl stdenv binutils pkgconfig kernel;
|
|
|
|
inherit (gnome) gtk glib pango libglade;
|
|
|
|
};
|
2008-05-22 13:01:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Build the kernel modules for the some of the kernels.
|
|
|
|
kernelPackages_2_6_23 = recurseIntoAttrs (kernelPackagesFor kernel_2_6_23);
|
|
|
|
kernelPackages_2_6_25 = recurseIntoAttrs (kernelPackagesFor kernel_2_6_25);
|
2008-08-07 17:47:08 +01:00
|
|
|
kernelPackages_2_6_26 = recurseIntoAttrs (kernelPackagesFor kernel_2_6_26);
|
2008-10-29 12:34:54 +00:00
|
|
|
kernelPackages_2_6_27 = recurseIntoAttrs (kernelPackagesFor kernel_2_6_27);
|
2008-05-22 13:01:24 +01:00
|
|
|
|
|
|
|
# The current default kernel / kernel modules.
|
2008-09-18 10:47:45 +01:00
|
|
|
kernelPackages = kernelPackages_2_6_25;
|
2008-05-22 13:01:24 +01:00
|
|
|
#kernel = kernelPackages.kernel;
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
customKernel = composedArgsAndFun (lib.sumTwoArgs (import ../os-specific/linux/kernel/linux.nix) {
|
2008-03-24 19:40:15 +00:00
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools lib;
|
2008-08-14 23:04:30 +01:00
|
|
|
});
|
2008-03-24 19:40:15 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libselinux = import ../os-specific/linux/libselinux {
|
|
|
|
inherit fetchurl stdenv libsepol;
|
|
|
|
};
|
2008-01-12 01:26:04 +00:00
|
|
|
|
|
|
|
libraw1394 = import ../development/libraries/libraw1394 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libsexy = import ../development/libraries/libsexy {
|
|
|
|
inherit stdenv fetchurl pkgconfig libxml2;
|
|
|
|
inherit (gtkLibs) glib gtk pango;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-05-20 15:25:09 +01:00
|
|
|
librsvg = gnome.librsvg;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libsepol = import ../os-specific/linux/libsepol {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libsmbios = import ../os-specific/linux/libsmbios {
|
|
|
|
inherit fetchurl stdenv libxml2;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-09-14 20:05:59 +01:00
|
|
|
lm_sensors = import ../os-specific/linux/lm_sensors {
|
|
|
|
inherit fetchurl stdenv bison flex perl;
|
|
|
|
};
|
|
|
|
|
2008-11-19 17:21:49 +00:00
|
|
|
kvm = kvm76;
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-06-17 11:53:08 +01:00
|
|
|
kvm57 = import ../os-specific/linux/kvm/57.nix {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl zlib e2fsprogs SDL alsaLib;
|
2008-02-07 09:02:28 +00:00
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
|
|
|
kernelHeaders = kernelHeaders_2_6_23;
|
|
|
|
};
|
|
|
|
|
2008-11-19 17:21:49 +00:00
|
|
|
kvm76 = import ../os-specific/linux/kvm/76.nix {
|
2008-08-08 12:53:01 +01:00
|
|
|
inherit fetchurl stdenv zlib e2fsprogs SDL alsaLib pkgconfig rsync;
|
2008-06-05 11:59:41 +01:00
|
|
|
kernelHeaders = kernelHeaders_2_6_26;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libcap = import ../os-specific/linux/libcap {
|
2008-02-29 09:42:12 +00:00
|
|
|
inherit fetchurl stdenv attr;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libnscd = import ../os-specific/linux/libnscd {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-08-30 08:39:38 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libnotify = import ../development/libraries/libnotify {
|
|
|
|
inherit stdenv fetchurl pkgconfig dbus dbus_glib;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
};
|
2007-10-27 18:55:13 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
libvolume_id = import ../os-specific/linux/libvolume_id {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-05-31 14:43:13 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
lvm2 = import ../os-specific/linux/lvm2 {
|
|
|
|
inherit fetchurl stdenv devicemapper;
|
|
|
|
};
|
2007-10-27 18:55:13 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mdadm = import ../os-specific/linux/mdadm {
|
|
|
|
inherit fetchurl stdenv groff;
|
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mingetty = import ../os-specific/linux/mingetty {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-01-26 14:01:08 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mkinitrd = import ../os-specific/linux/mkinitrd {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
popt = popt110;
|
|
|
|
};
|
2006-03-15 12:43:40 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
module_init_tools = import ../os-specific/linux/module-init-tools {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-09-11 09:45:01 +01:00
|
|
|
|
2008-08-06 16:43:03 +01:00
|
|
|
mount_cifs = import ../os-specific/linux/mount-cifs {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
aggregateModules = modules:
|
2008-03-17 09:41:28 +00:00
|
|
|
import ../os-specific/linux/module-init-tools/aggregator.nix {
|
2008-05-08 16:36:19 +01:00
|
|
|
inherit stdenv module_init_tools modules;
|
2008-03-17 09:41:28 +00:00
|
|
|
};
|
2008-01-04 17:02:12 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
modutils = import ../os-specific/linux/modutils {
|
|
|
|
inherit fetchurl bison flex;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
nettools = import ../os-specific/linux/net-tools {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-04-18 15:38:27 +01:00
|
|
|
numactl = import ../os-specific/linux/numactl {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
gw6c = builderDefsPackage (selectVersion ../os-specific/linux/gw6c "5.1") {
|
2008-04-13 09:23:58 +01:00
|
|
|
inherit fetchurl stdenv nettools openssl procps iproute;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
nss_ldap = import ../os-specific/linux/nss_ldap {
|
|
|
|
inherit fetchurl stdenv openldap;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pam = import ../os-specific/linux/pam {
|
|
|
|
inherit stdenv fetchurl cracklib flex;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pam_console = import ../os-specific/linux/pam_console {
|
|
|
|
inherit stdenv fetchurl pam autoconf automake libtool pkgconfig bison;
|
|
|
|
flex = if stdenv.system == "i686-linux" then flex else flex2533;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pam_devperm = import ../os-specific/linux/pam_devperm {
|
|
|
|
inherit stdenv fetchurl pam;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pam_ldap = import ../os-specific/linux/pam_ldap {
|
|
|
|
inherit stdenv fetchurl pam openldap;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pam_login = import ../os-specific/linux/pam_login {
|
|
|
|
inherit stdenv fetchurl pam;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pam_unix2 = import ../os-specific/linux/pam_unix2 {
|
|
|
|
inherit stdenv fetchurl pam libxcrypt;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2008-08-27 14:59:33 +01:00
|
|
|
pcmciaUtils = composedArgsAndFun (import ../os-specific/linux/pcmciautils) {
|
2008-07-25 16:54:19 +01:00
|
|
|
inherit stdenv fetchurl udev yacc flex;
|
|
|
|
inherit sysfsutils module_init_tools;
|
|
|
|
|
2008-08-27 14:59:33 +01:00
|
|
|
firmware = getConfig ["pcmciaUtils" "firmware"] [];
|
2008-07-25 16:54:19 +01:00
|
|
|
config = getConfig ["pcmciaUtils" "config"] null;
|
2008-08-27 14:59:33 +01:00
|
|
|
inherit lib;
|
2008-07-25 16:54:19 +01:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
powertop = import ../os-specific/linux/powertop {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2007-12-13 22:15:03 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
procps = import ../os-specific/linux/procps {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2006-09-11 10:17:28 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
pwdutils = import ../os-specific/linux/pwdutils {
|
|
|
|
inherit fetchurl stdenv pam openssl libnscd;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
reiserfsprogs = import ../os-specific/linux/reiserfsprogs {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
|
2008-02-04 14:37:15 +00:00
|
|
|
reiser4progs = import ../os-specific/linux/reiser4progs {
|
|
|
|
inherit fetchurl stdenv libaal;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
radeontools = import ../os-specific/linux/radeontools {
|
|
|
|
inherit pciutils;
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
|
2008-11-06 19:01:30 +00:00
|
|
|
sdparm = composedArgsAndFun (selectVersion ../os-specific/linux/sdparm "1.03") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv builderDefs;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
shadowutils = import ../os-specific/linux/shadow {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
squashfsTools = import ../os-specific/linux/squashfs {
|
|
|
|
inherit fetchurl stdenv zlib;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
|
2008-07-25 16:53:23 +01:00
|
|
|
sysfsutils = import ../os-specific/linux/sysfsutils {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Provided with sysfsutils.
|
|
|
|
libsysfs = sysfsutils;
|
|
|
|
systool = sysfsutils;
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
sysklogd = import ../os-specific/linux/sysklogd {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
syslinux = import ../os-specific/linux/syslinux {
|
|
|
|
inherit fetchurl stdenv nasm perl;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
sysstat = import ../os-specific/linux/sysstat {
|
|
|
|
inherit fetchurl stdenv gettext;
|
|
|
|
};
|
2005-12-20 00:48:38 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
sysvinit = import ../os-specific/linux/sysvinit {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
sysvtools = import ../os-specific/linux/sysvinit {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
withoutInitTools = true;
|
|
|
|
};
|
|
|
|
|
2008-03-15 22:41:31 +00:00
|
|
|
# FIXME: `tcp-wrapper' is actually not OS-specific.
|
|
|
|
tcpWrapper = import ../os-specific/linux/tcp-wrapper {
|
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
udev = import ../os-specific/linux/udev {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
uml = import ../os-specific/linux/kernel/linux-2.6.20.nix {
|
|
|
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
|
|
|
userModeLinux = true;
|
|
|
|
};
|
2007-09-11 20:27:25 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
umlutilities = import ../os-specific/linux/uml-utilities {
|
2008-07-26 02:02:27 +01:00
|
|
|
inherit fetchurl kernelHeaders stdenv readline lib;
|
|
|
|
tunctl = true; mconsole = true;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2005-10-04 15:25:13 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
upstart = import ../os-specific/linux/upstart {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-06-20 13:20:39 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
upstartJobControl = import ../os-specific/linux/upstart/jobcontrol.nix {
|
|
|
|
inherit stdenv;
|
|
|
|
};
|
2007-07-01 21:11:32 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
usbutils = import ../os-specific/linux/usbutils {
|
|
|
|
inherit fetchurl stdenv libusb;
|
|
|
|
};
|
2007-11-11 16:52:29 +00:00
|
|
|
|
2008-11-16 19:23:06 +00:00
|
|
|
utillinux = composedArgsAndFun (import ../os-specific/linux/util-linux) {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2007-12-11 22:58:44 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
utillinuxCurses = import ../os-specific/linux/util-linux {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
utillinuxStatic = lowPrio (appendToName "static" (import ../os-specific/linux/util-linux {
|
|
|
|
inherit fetchurl;
|
|
|
|
stdenv = makeStaticBinaries stdenv;
|
|
|
|
}));
|
2007-03-17 13:29:15 +00:00
|
|
|
|
2008-02-06 21:26:17 +00:00
|
|
|
wesnoth = import ../games/wesnoth {
|
|
|
|
inherit fetchurl stdenv SDL SDL_image SDL_mixer SDL_net gettext zlib boost freetype;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wirelesstools = import ../os-specific/linux/wireless-tools {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wpa_supplicant = import ../os-specific/linux/wpa_supplicant {
|
|
|
|
inherit fetchurl stdenv openssl;
|
|
|
|
};
|
2007-07-17 20:29:53 +01:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
xfsProgs = builderDefsPackage (selectVersion ../os-specific/linux/xfsprogs "2.9.7-1"){
|
2008-03-27 19:12:14 +00:00
|
|
|
inherit libtool gettext e2fsprogs;
|
|
|
|
};
|
|
|
|
|
2008-11-30 16:50:05 +00:00
|
|
|
xmoto = builderDefsPackage (import ../games/xmoto) {
|
|
|
|
inherit chipmunk sqlite curl zlib bzip2 libjpeg libpng
|
|
|
|
freeglut mesa SDL SDL_mixer SDL_image SDL_net SDL_ttf
|
|
|
|
lua5 ode;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
xorg_sys_opengl = import ../os-specific/linux/opengl/xorg-sys {
|
|
|
|
inherit stdenv xlibs expat libdrm;
|
|
|
|
};
|
2007-08-20 14:48:56 +01:00
|
|
|
|
2008-02-20 08:53:42 +00:00
|
|
|
zd1211fw = import ../os-specific/linux/firmware/zd1211 {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
2005-05-26 21:09:29 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
### DATA
|
2005-08-30 08:39:38 +01:00
|
|
|
|
2008-07-05 06:26:58 +01:00
|
|
|
arkpandora_ttf = builderDefsPackage (import ../data/fonts/arkpandora) {
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2006-09-15 16:28:53 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
bakoma_ttf = import ../data/fonts/bakoma-ttf {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
corefonts = import ../data/fonts/corefonts {
|
|
|
|
inherit fetchurl stdenv cabextract;
|
|
|
|
};
|
2007-12-05 21:25:47 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wrapFonts = paths : ((import ../data/fonts/fontWrap) {
|
2008-03-02 19:19:34 +00:00
|
|
|
inherit fetchurl stdenv builderDefs paths ttmkfdir;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xorg) mkfontdir mkfontscale;
|
|
|
|
});
|
2007-11-22 04:23:27 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
clearlyU = composedArgsAndFun (selectVersion ../data/fonts/clearlyU "1.9") {
|
2008-03-02 18:41:32 +00:00
|
|
|
inherit builderDefs;
|
|
|
|
inherit (xorg) mkfontdir mkfontscale;
|
|
|
|
};
|
|
|
|
|
|
|
|
dejavu_fonts = import ../data/fonts/dejavu-fonts {
|
|
|
|
inherit fetchurl stdenv fontforge perl perlFontTTF
|
|
|
|
fontconfig;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
docbook5 = import ../data/sgml+xml/schemas/docbook-5.0 {
|
2008-06-11 16:39:04 +01:00
|
|
|
inherit fetchurl stdenv unzip;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
2007-11-22 04:23:27 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
docbook_xml_dtd_412 = import ../data/sgml+xml/schemas/xml-dtd/docbook/4.1.2.nix {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
docbook_xml_dtd_42 = import ../data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2005-10-22 12:51:30 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
docbook_xml_dtd_43 = import ../data/sgml+xml/schemas/xml-dtd/docbook/4.3.nix {
|
2007-12-13 22:15:03 +00:00
|
|
|
inherit fetchurl stdenv unzip;
|
2007-03-05 13:44:27 +00:00
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
|
|
|
|
docbook_xml_ebnf_dtd = import ../data/sgml+xml/schemas/xml-dtd/docbook-ebnf {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
|
|
|
docbook_xml_xslt = docbook_xsl;
|
|
|
|
|
|
|
|
docbook_xsl = import ../data/sgml+xml/stylesheets/xslt/docbook {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
docbook5_xsl = import ../data/sgml+xml/stylesheets/xslt/docbook5 {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
junicode = composedArgsAndFun (selectVersion ../data/fonts/junicode "0.6.15") {
|
2008-03-02 22:02:28 +00:00
|
|
|
inherit builderDefs fontforge unzip;
|
|
|
|
inherit (xorg) mkfontdir mkfontscale;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
freefont_ttf = import ../data/fonts/freefont-ttf {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-03-02 18:41:32 +00:00
|
|
|
liberation_ttf = import ../data/fonts/redhat-liberation-fonts {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-05-18 09:13:07 +01:00
|
|
|
libertine = builderDefsPackage (selectVersion ../data/fonts/libertine "2.7") {
|
2008-04-28 11:10:44 +01:00
|
|
|
inherit fontforge;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-18 09:13:07 +01:00
|
|
|
libertineBin = builderDefsPackage (selectVersion ../data/fonts/libertine "2.7.bin") {
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-04-28 11:10:44 +01:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
lmodern = builderDefsPackage (selectVersion ../data/fonts/lmodern "1.010") {
|
2008-04-26 16:23:46 +01:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
manpages = import ../data/documentation/man-pages {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-03-02 18:41:32 +00:00
|
|
|
mph_2b_damase = import ../data/fonts/mph-2b-damase {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2008-02-18 20:50:49 +00:00
|
|
|
shared_mime_info = selectVersion ../data/misc/shared-mime-info "0.23" {
|
2008-01-29 13:24:40 +00:00
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig gettext libxml2;
|
|
|
|
inherit (gtkLibs) glib;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
iana_etc = import ../data/misc/iana-etc {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-07-18 08:45:48 +01:00
|
|
|
popplerData = import ../data/misc/poppler-data {
|
2008-01-29 13:24:40 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-03-27 14:40:08 +00:00
|
|
|
r3rs = import ../data/documentation/rnrs/r3rs.nix {
|
|
|
|
inherit fetchurl stdenv texinfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
r4rs = import ../data/documentation/rnrs/r4rs.nix {
|
|
|
|
inherit fetchurl stdenv texinfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
r5rs = import ../data/documentation/rnrs/r5rs.nix {
|
|
|
|
inherit fetchurl stdenv texinfo;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
ttf_bitstream_vera = import ../data/fonts/ttf-bitstream-vera {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-03-02 19:19:34 +00:00
|
|
|
ucsFonts = import ../data/fonts/ucs-fonts {
|
|
|
|
inherit fetchurl stdenv wrapFonts;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
unifont = import ../data/fonts/unifont {
|
2008-03-02 18:41:32 +00:00
|
|
|
inherit debPackage perl;
|
|
|
|
inherit (xorg) mkfontdir mkfontscale bdftopcf fontutil;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
vistafonts = import ../data/fonts/vista-fonts {
|
|
|
|
inherit fetchurl stdenv cabextract;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
wqy_zenhei = composedArgsAndFun (selectVersion ../data/fonts/wqy_zenhei "0.4.23-1") {
|
2008-03-02 18:41:32 +00:00
|
|
|
inherit builderDefs;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
xkeyboard_config = composedArgsAndFun (selectVersion ../data/misc/xkeyboard-config "1.2") {
|
2008-02-03 08:53:47 +00:00
|
|
|
inherit fetchurl stdenv perl perlXMLParser gettext;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) xkbcomp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
### APPLICATIONS
|
|
|
|
|
|
|
|
|
|
|
|
aangifte2005 = import ../applications/taxes/aangifte-2005 {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
};
|
|
|
|
|
|
|
|
aangifte2006 = import ../applications/taxes/aangifte-2006 {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit (xlibs) libX11 libXext;
|
|
|
|
};
|
|
|
|
|
2008-03-15 21:45:57 +00:00
|
|
|
aangifte2007 = import ../applications/taxes/aangifte-2007 {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit (xlibs) libX11 libXext libSM;
|
|
|
|
};
|
|
|
|
|
2008-05-26 21:54:34 +01:00
|
|
|
abcde = import ../applications/audio/abcde {
|
|
|
|
inherit fetchurl stdenv libcdio cddiscid wget bash vorbisTools
|
|
|
|
makeWrapper;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
abiword = import ../applications/office/abiword {
|
2008-03-31 22:41:18 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig fribidi libpng popt libgsf enchant wv;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libglade libgnomeprint libgnomeprintui libgnomecanvas;
|
|
|
|
};
|
|
|
|
|
|
|
|
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 = getConfig ["acroread" "fastStart"] true;
|
|
|
|
};
|
|
|
|
|
|
|
|
amsn = import ../applications/networking/instant-messengers/amsn {
|
|
|
|
inherit fetchurl stdenv which tcl tk x11;
|
|
|
|
libstdcpp = gcc33.gcc;
|
|
|
|
};
|
|
|
|
|
2008-03-03 10:55:20 +00:00
|
|
|
audacious = import ../applications/audio/audacious/player.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig libmowgli libmcs gettext xlibs dbus_glib;
|
|
|
|
inherit (gnome) libglade;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
|
|
|
audacious_plugins = import ../applications/audio/audacious/plugins.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig audacious dbus_glib gettext
|
2008-04-22 08:14:47 +01:00
|
|
|
libmad xlibs alsaLib taglib libmpcdec libogg libvorbis
|
|
|
|
libcdio libcddb;
|
2008-03-03 10:55:20 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
audacity = import ../applications/audio/audacity {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv libogg libvorbis libsndfile libmad
|
2008-01-29 13:24:40 +00:00
|
|
|
pkgconfig gettext;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
wxGTK = wxGTK28deps;
|
|
|
|
inherit builderDefs stringsWithDeps;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-02-11 21:45:52 +00:00
|
|
|
aumix = import ../applications/audio/aumix {
|
|
|
|
inherit fetchurl stdenv ncurses pkgconfig gettext;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
gtkGUI = false;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
batik = import ../applications/graphics/batik {
|
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
|
|
|
|
2008-01-18 10:29:58 +00:00
|
|
|
bazaar = import ../applications/version-management/bazaar {
|
2008-10-15 21:01:39 +01:00
|
|
|
inherit fetchurl stdenv makeWrapper;
|
|
|
|
python = pythonFull;
|
2008-01-18 10:29:58 +00:00
|
|
|
};
|
|
|
|
|
2008-05-26 12:39:08 +01:00
|
|
|
bazaarTools = builderDefsPackage (import ../applications/version-management/bazaar/tools.nix) {
|
|
|
|
inherit bazaar;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-26 12:39:08 +01:00
|
|
|
|
2008-08-18 11:50:16 +01:00
|
|
|
beast = import ../applications/audio/beast {
|
|
|
|
# stdenv = overrideGCC stdenv gcc34;
|
|
|
|
inherit stdenv fetchurl zlib guile pkgconfig intltool libogg libvorbis python libxml2 bash perl gettext;
|
|
|
|
inherit (bleedingEdgeRepos) sourceByName;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (gnome) libgnomecanvas libart_lgpl;
|
|
|
|
inherit automake autoconf;
|
|
|
|
};
|
|
|
|
|
2008-02-17 15:33:04 +00:00
|
|
|
bitlbee = import ../applications/networking/instant-messengers/bitlbee {
|
|
|
|
inherit fetchurl stdenv gnutls pkgconfig;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2008-09-26 10:03:22 +01:00
|
|
|
bitlbeeOtr = import ../applications/networking/instant-messengers/bitlbee-otr {
|
2008-09-26 13:32:06 +01:00
|
|
|
inherit fetchbzr stdenv gnutls pkgconfig libotr libgcrypt
|
2008-09-26 10:03:22 +01:00
|
|
|
libxslt xmlto docbook_xsl docbook_xml_dtd_42 perl;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
# commented out because it's using the new configuration style proposal which is unstable
|
|
|
|
#biew = import ../applications/misc/biew {
|
|
|
|
# inherit lib stdenv fetchurl ncurses;
|
|
|
|
#};
|
|
|
|
|
|
|
|
# only to be able to compile blender - I couldn't compile the default openal software
|
|
|
|
# Perhaps this can be removed - don't know which one openal{,soft} is better
|
|
|
|
freealut_soft = import ../development/libraries/freealut {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
openal = openalSoft;
|
|
|
|
};
|
2008-02-20 23:02:41 +00:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
blender = import ../applications/misc/blender {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit stdenv cmake mesa gettext freetype SDL libtiff fetchurl glibc scons x11 lib
|
2008-09-24 10:56:27 +01:00
|
|
|
libjpeg libpng zlib /* smpeg sdl */ python;
|
|
|
|
inherit (xlibs) inputproto libXi;
|
2007-12-30 22:02:04 +00:00
|
|
|
freealut = freealut_soft;
|
|
|
|
openal = openalSoft;
|
|
|
|
openexr = openexr_1_4_0;
|
|
|
|
};
|
|
|
|
|
|
|
|
bmp = import ../applications/audio/bmp {
|
|
|
|
inherit fetchurl stdenv pkgconfig libogg libvorbis alsaLib id3lib;
|
|
|
|
inherit (gnome) esound libglade;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
|
|
|
bmp_plugin_musepack = import ../applications/audio/bmp-plugins/musepack {
|
|
|
|
inherit fetchurl stdenv pkgconfig bmp libmpcdec taglib;
|
|
|
|
};
|
|
|
|
|
|
|
|
bmp_plugin_wma = import ../applications/audio/bmp-plugins/wma {
|
|
|
|
inherit fetchurl stdenv pkgconfig bmp;
|
|
|
|
};
|
|
|
|
|
2008-01-20 22:47:08 +00:00
|
|
|
bvi = import ../applications/editors/bvi {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2008-06-16 14:15:55 +01:00
|
|
|
carrier = builderDefsPackage (selectVersion ../applications/networking/instant-messengers/carrier "2.4.2") {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss
|
|
|
|
gtkspell aspell gettext ncurses avahi dbus dbus_glib python
|
2008-07-01 09:31:48 +01:00
|
|
|
libtool automake autoconf;
|
2008-06-16 14:15:55 +01:00
|
|
|
GStreamer = gst_all.gstreamer;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (gnome) startupnotification GConf ;
|
|
|
|
inherit (xlibs) libXScrnSaver scrnsaverproto libX11 xproto kbproto;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-16 14:15:55 +01:00
|
|
|
funpidgin = carrier;
|
|
|
|
|
2008-05-26 21:18:45 +01:00
|
|
|
cddiscid = import ../applications/audio/cd-discid {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-02-22 03:06:12 +00:00
|
|
|
cdparanoia = cdparanoiaIII;
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cdparanoiaIII = import ../applications/audio/cdparanoia {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
cdrtools = import ../applications/misc/cdrtools {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
chatzilla =
|
2007-12-30 22:02:04 +00:00
|
|
|
xulrunnerWrapper {
|
|
|
|
launcher = "chatzilla";
|
|
|
|
application = import ../applications/networking/irc/chatzilla {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv unzip;
|
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-10-14 15:01:50 +01:00
|
|
|
cinelerra = import ../applications/video/cinelerra {
|
|
|
|
inherit fetchurl stdenv
|
|
|
|
automake autoconf libtool
|
|
|
|
a52dec alsaLib lame libavc1394 libiec61883 libraw1394 libsndfile
|
|
|
|
libvorbis libogg libjpeg libtiff freetype mjpegtools x264
|
|
|
|
gettext X11 faad2 faac libtheora libpng libdv perl nasm e2fsprogs
|
|
|
|
pkgconfig;
|
|
|
|
openexr = openexr_1_6_1;
|
|
|
|
fftw = fftwSinglePrec;
|
|
|
|
inherit (xorg) libXxf86vm libXv;
|
|
|
|
inherit (bleedingEdgeRepos) sourceByName;
|
|
|
|
inherit (gnome) esound;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
compiz_050 = assert mesaSupported; import ../applications/window-managers/compiz/0.5.0.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig libpng mesa;
|
|
|
|
inherit (xorg) libXcomposite libXfixes libXdamage libXrandr
|
|
|
|
libXinerama libICE libSM libXrender xextproto;
|
|
|
|
inherit (gnome) startupnotification libwnck GConf;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libgnome libgnomeui metacity glib pango
|
|
|
|
libglade libgtkhtml gtkhtml libgnomecanvas libgnomeprint
|
|
|
|
libgnomeprintui gnomepanel;
|
|
|
|
gnomegtk = gnome.gtk;
|
|
|
|
inherit librsvg fuse;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
compiz_062 = compiz.passthru.function {
|
2007-12-30 22:02:04 +00:00
|
|
|
version = "0.6.2";
|
|
|
|
};
|
|
|
|
|
2008-09-18 16:20:53 +01:00
|
|
|
compizBase = composedArgsAndFun (assert mesaSupported; selectVersion ../applications/window-managers/compiz "0.7.8") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit lib builderDefs stringsWithDeps;
|
2008-09-18 16:20:53 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libpng mesa perl perlXMLParser libxslt gettext;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xorg) libXcomposite libXfixes libXdamage libXrandr
|
|
|
|
libXinerama libICE libSM libXrender xextproto compositeproto fixesproto
|
2008-06-18 23:48:34 +01:00
|
|
|
damageproto randrproto xineramaproto renderproto kbproto xproto libX11
|
2008-04-11 10:32:27 +01:00
|
|
|
libxcb;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gnome) startupnotification libwnck GConf;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libgnome libgnomeui metacity
|
|
|
|
glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeprint
|
|
|
|
libgnomeprintui gnomepanel;
|
|
|
|
gnomegtk = gnome.gtk;
|
|
|
|
inherit librsvg fuse;
|
|
|
|
inherit dbus dbus_glib;
|
|
|
|
};
|
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
compiz = compizBase.passthru.function {
|
2007-12-30 22:02:04 +00:00
|
|
|
extraConfigureFlags = getConfig ["compiz" "extraConfigureFlags"] [];
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
|
|
|
|
compizFusion = assert mesaSupported; import ../applications/window-managers/compiz-fusion {
|
2008-10-26 11:58:42 +00:00
|
|
|
version = getConfig ["compizFusion" "version"] "0.7.8";
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit compiz;
|
|
|
|
inherit stringsWithDeps lib builderDefs;
|
2008-10-26 11:58:42 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig libpng mesa perl perlXMLParser libxslt libxml2;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xorg) libXcomposite libXfixes libXdamage libXrandr
|
|
|
|
libXinerama libICE libSM libXrender xextproto;
|
|
|
|
inherit (gnome) startupnotification libwnck GConf;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libgnome libgnomeui metacity
|
|
|
|
glib pango libglade libgtkhtml gtkhtml
|
|
|
|
libgnomecanvas libgnomeprint
|
|
|
|
libgnomeprintui gnomepanel gnomedesktop;
|
|
|
|
gnomegtk = gnome.gtk;
|
|
|
|
inherit librsvg fuse dbus dbus_glib git;
|
|
|
|
inherit automake autoconf libtool intltool python pyrex gettext;
|
|
|
|
inherit pygtk pycairo getopt libjpeg glxinfo;
|
|
|
|
inherit (xorg) xvinfo xdpyinfo;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
compizExtra = import ../applications/window-managers/compiz/extra.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig compiz perl perlXMLParser dbus;
|
|
|
|
inherit (gnome) GConf;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
2008-02-11 17:02:46 +00:00
|
|
|
bbdb = import ../applications/editors/emacs-modes/bbdb {
|
|
|
|
inherit fetchurl stdenv emacs texinfo ctags;
|
|
|
|
};
|
|
|
|
|
2008-05-26 08:47:07 +01:00
|
|
|
codeville = builderDefsPackage (selectVersion ../applications/version-management/codeville "0.8.0") {
|
2008-10-15 21:01:39 +01:00
|
|
|
inherit makeWrapper;
|
|
|
|
python = pythonFull;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-26 08:47:07 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cua = import ../applications/editors/emacs-modes/cua {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
cvs = import ../applications/version-management/cvs {
|
2008-03-13 10:01:21 +00:00
|
|
|
inherit fetchurl stdenv nano;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-03-13 10:02:57 +00:00
|
|
|
cvsps = import ../applications/version-management/cvsps {
|
|
|
|
inherit fetchurl stdenv cvs zlib;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
cvs2svn = import ../applications/version-management/cvs2svn {
|
2008-01-18 11:28:41 +00:00
|
|
|
inherit fetchurl stdenv python makeWrapper;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
d4x = import ../applications/misc/d4x {
|
|
|
|
inherit fetchurl stdenv pkgconfig openssl boost;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
darcs = import ../applications/version-management/darcs {
|
2008-10-09 23:58:14 +01:00
|
|
|
inherit fetchurl stdenv zlib ncurses curl getConfig;
|
2008-06-18 23:48:34 +01:00
|
|
|
ghc = ghc661;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
# some speed bottle necks are resolved in this version I think .. perhaps you like to try it?
|
2008-04-14 20:59:26 +01:00
|
|
|
darcs2 = import ../applications/version-management/darcs/darcs-2.nix {
|
2008-09-24 01:43:05 +01:00
|
|
|
inherit fetchurl stdenv zlib ncurses curl ghc perl;
|
2008-02-09 13:52:41 +00:00
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
dia = import ../applications/graphics/dia {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit stdenv fetchurl pkgconfig perl perlXMLParser
|
|
|
|
libxml2 gettext python libxml2Python docbook5 docbook_xsl
|
2008-03-17 09:41:28 +00:00
|
|
|
libxslt;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
};
|
|
|
|
|
|
|
|
djvulibre = import ../applications/misc/djvulibre {
|
|
|
|
inherit stdenv fetchurl libjpeg libtiff libungif zlib
|
2008-03-17 09:41:28 +00:00
|
|
|
ghostscript libpng x11 mesa;
|
2008-01-28 19:48:08 +00:00
|
|
|
qt = if (getConfig ["djvulibre" "qt3Frontend"] true) then qt3 else null;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
|
|
|
djview4 = import ../applications/graphics/djview {
|
|
|
|
inherit fetchurl stdenv qt4 djvulibre;
|
|
|
|
};
|
|
|
|
|
2008-08-06 21:39:01 +01:00
|
|
|
dmenu = import ../applications/misc/dmenu {
|
|
|
|
inherit lib fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXinerama;
|
|
|
|
};
|
|
|
|
|
2008-11-13 13:31:10 +00:00
|
|
|
dmtx = builderDefsPackage (import ../tools/graphics/dmtx) {
|
|
|
|
inherit libpng libtiff;
|
|
|
|
};
|
|
|
|
|
2008-08-21 21:44:08 +01:00
|
|
|
dwm = import ../applications/window-managers/dwm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXinerama;
|
2008-10-09 11:10:49 +01:00
|
|
|
};
|
2008-08-21 21:44:08 +01:00
|
|
|
|
2008-10-26 17:45:14 +00:00
|
|
|
|
|
|
|
# put something like this into your ~/.nixpkgs/config.nix file
|
|
|
|
#eclipse = {
|
2008-10-27 10:25:50 +00:00
|
|
|
# plugins = {eclipse, version, plugins } : let p = plugins; in
|
2008-10-26 17:45:14 +00:00
|
|
|
# [ p.pdt # PHP developement
|
|
|
|
# p.viPlugin # vim keybindings (see license)
|
2008-10-27 10:25:50 +00:00
|
|
|
# ];
|
2008-10-26 17:45:14 +00:00
|
|
|
#};
|
|
|
|
eclipseNew = (selectVersion ../applications/editors/eclipse-new "3.3.1.1" {
|
|
|
|
# outdated, but 3.3.1.1 does already compile on nix, feel free to work 3.4
|
|
|
|
inherit fetchurl stdenv makeWrapper jdk unzip ant selectVersion buildEnv
|
|
|
|
getConfig lib zip writeTextFile runCommand;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (xlibs) libXtst;
|
|
|
|
});
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
eclipse = plugins:
|
|
|
|
import ../applications/editors/eclipse {
|
|
|
|
inherit fetchurl stdenv makeWrapper jdk;
|
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (xlibs) libXtst;
|
|
|
|
inherit plugins;
|
|
|
|
};
|
|
|
|
|
|
|
|
eclipsesdk = eclipse [];
|
|
|
|
|
|
|
|
eclipseSpoofax = lowPrio (appendToName "with-spoofax" (eclipse [spoofax]));
|
|
|
|
|
2008-04-25 17:13:36 +01:00
|
|
|
ed = import ../applications/editors/ed {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
elinks = import ../applications/networking/browsers/elinks {
|
|
|
|
inherit stdenv fetchurl python perl ncurses x11 zlib openssl spidermonkey
|
2008-03-17 09:41:28 +00:00
|
|
|
guile bzip2;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
emacs = emacs22;
|
|
|
|
|
|
|
|
emacs21 = import ../applications/editors/emacs-21 {
|
|
|
|
inherit fetchurl stdenv ncurses x11 Xaw3d;
|
|
|
|
inherit (xlibs) libXaw libXpm;
|
|
|
|
xaw3dSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
emacs22 = import ../applications/editors/emacs-22 {
|
|
|
|
inherit fetchurl stdenv ncurses pkgconfig x11 Xaw3d;
|
|
|
|
inherit (xlibs) libXaw libXpm;
|
|
|
|
inherit (gtkLibs) gtk;
|
2008-09-25 22:38:16 +01:00
|
|
|
xaw3dSupport = getPkgConfig "emacs" "xaw3dSupport" false;
|
|
|
|
gtkGUI = getPkgConfig "emacs" "gtkSupport" true;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-09-25 22:38:16 +01:00
|
|
|
emacsUnicode = lowPrio (import ../applications/editors/emacs-unicode {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv ncurses pkgconfig x11 Xaw3d
|
|
|
|
libpng libjpeg libungif libtiff;
|
|
|
|
inherit (xlibs) libXaw libXpm libXft;
|
|
|
|
inherit (gtkLibs) gtk;
|
2008-09-25 22:38:16 +01:00
|
|
|
xawSupport = getPkgConfig "emacs" "xawSupport" false;
|
|
|
|
xaw3dSupport = getPkgConfig "emacs" "xaw3dSupport" false;
|
|
|
|
gtkGUI = getPkgConfig "emacs" "gtkSupport" true;
|
|
|
|
xftSupport = getPkgConfig "emacs" "xftSupport" true;
|
|
|
|
});
|
2007-12-30 22:02:04 +00:00
|
|
|
|
2008-08-21 09:58:51 +01:00
|
|
|
emms = import ../applications/editors/emacs-modes/emms {
|
|
|
|
inherit fetchurl stdenv emacs texinfo mpg321 vorbisTools taglib
|
|
|
|
alsaUtils;
|
|
|
|
};
|
|
|
|
|
2008-07-27 11:24:08 +01:00
|
|
|
evince = import ../applications/misc/evince {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser gettext
|
|
|
|
pkgconfig poppler libspectre djvulibre libxslt
|
|
|
|
dbus dbus_glib shared_mime_info makeWrapper;
|
|
|
|
inherit (gnome) gnomedocutils gnomeicontheme libgnome
|
|
|
|
libgnomeui libglade glib gtk scrollkeeper;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
exrdisplay = import ../applications/graphics/exrdisplay {
|
|
|
|
inherit fetchurl stdenv pkgconfig mesa which openexr_ctl;
|
|
|
|
fltk = fltk20;
|
|
|
|
openexr = openexr_1_6_1;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
fbpanel = composedArgsAndFun (selectVersion ../applications/window-managers/fbpanel "4.12") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv builderDefs pkgconfig libpng libjpeg libtiff librsvg;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libX11 libXmu libXpm;
|
|
|
|
};
|
|
|
|
|
|
|
|
fetchmail = import ../applications/misc/fetchmail {
|
2008-02-22 10:12:01 +00:00
|
|
|
inherit stdenv fetchurl openssl;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-09-24 01:42:06 +01:00
|
|
|
wavesurfer = import ../applications/misc/audio/wavesurfer {
|
|
|
|
inherit fetchurl stdenv tcl tk snack makeWrapper;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
wireshark = import ../applications/networking/sniffers/wireshark {
|
2008-04-12 13:44:56 +01:00
|
|
|
inherit fetchurl stdenv perl pkgconfig libpcap flex bison;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
2008-10-28 11:56:43 +00:00
|
|
|
fdupes = import ../tools/misc/fdupes {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
feh = import ../applications/graphics/feh {
|
|
|
|
inherit fetchurl stdenv x11 imlib2 libjpeg libpng;
|
|
|
|
};
|
|
|
|
|
2008-10-30 16:29:07 +00:00
|
|
|
firefox = firefox3;
|
2008-07-18 11:41:27 +01:00
|
|
|
|
2008-10-30 16:31:33 +00:00
|
|
|
firefoxWrapper = firefox3Wrapper;
|
|
|
|
|
2008-07-18 11:41:27 +01:00
|
|
|
firefox2 = lowPrio (import ../applications/networking/browsers/firefox-2 {
|
2007-03-02 19:14:24 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo;
|
2006-10-04 14:59:41 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
2007-12-30 22:02:04 +00:00
|
|
|
#enableOfficialBranding = true;
|
|
|
|
});
|
2006-10-04 14:59:41 +01:00
|
|
|
|
2008-10-30 16:31:33 +00:00
|
|
|
firefox2Wrapper = wrapFirefox firefox2 "firefox" "";
|
2006-02-15 02:53:01 +00:00
|
|
|
|
2008-02-13 10:36:53 +00:00
|
|
|
firefox3 = lowPrio (import ../applications/networking/browsers/firefox-3 {
|
2008-10-30 13:00:50 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg zlib cairo
|
|
|
|
python dbus dbus_glib freetype fontconfig bzip2;
|
2007-12-25 12:29:02 +00:00
|
|
|
inherit (gtkLibs) gtk pango;
|
|
|
|
inherit (gnome) libIDL;
|
2007-12-30 22:02:04 +00:00
|
|
|
#enableOfficialBranding = true;
|
2008-10-30 13:00:50 +00:00
|
|
|
xulrunner = xulrunner3;
|
2007-12-30 22:02:04 +00:00
|
|
|
});
|
2007-12-25 12:29:02 +00:00
|
|
|
|
2008-08-02 16:14:54 +01:00
|
|
|
xulrunner3 = lowPrio (import ../applications/networking/browsers/firefox-3/xulrunner.nix {
|
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo
|
|
|
|
python dbus dbus_glib freetype fontconfig bzip2 xlibs file;
|
|
|
|
inherit (gtkLibs) gtk pango;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
#enableOfficialBranding = true;
|
|
|
|
});
|
|
|
|
|
2008-02-14 10:50:24 +00:00
|
|
|
firefox3b1Bin = lowPrio (import ../applications/networking/browsers/firefox-3/binary.nix {
|
2007-12-10 16:56:55 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo
|
2008-03-17 09:41:28 +00:00
|
|
|
python curl coreutils freetype fontconfig;
|
2007-12-10 16:56:55 +00:00
|
|
|
inherit (gtkLibs) gtk atk pango glib;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi libX11 libXrender libXft libXt;
|
2007-12-30 22:02:04 +00:00
|
|
|
});
|
2003-11-11 15:01:07 +00:00
|
|
|
|
2008-10-30 16:29:07 +00:00
|
|
|
firefox3Wrapper = wrapFirefox firefox3 "firefox" "";
|
2008-07-28 17:25:09 +01:00
|
|
|
firefox3b1BinWrapper = lowPrio (wrapFirefox firefox3b1Bin "firefox" "");
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-01-28 19:48:21 +00:00
|
|
|
flacAlts = import ../applications/audio/flac {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit fetchurl stdenv libogg;
|
|
|
|
};
|
|
|
|
|
2008-01-28 19:48:21 +00:00
|
|
|
flac = getVersion "flac" flacAlts;
|
|
|
|
|
2008-10-30 13:00:50 +00:00
|
|
|
flashplayer = flashplayer10;
|
2007-12-30 22:02:04 +00:00
|
|
|
|
|
|
|
flashplayer9 = import ../applications/networking/browsers/mozilla-plugins/flashplayer-9 {
|
|
|
|
inherit fetchurl stdenv zlib alsaLib;
|
|
|
|
};
|
|
|
|
|
2008-10-16 14:36:27 +01:00
|
|
|
flashplayer10 = import ../applications/networking/browsers/mozilla-plugins/flashplayer-10 {
|
|
|
|
inherit fetchurl stdenv zlib alsaLib curl;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
flite = import ../applications/misc/flite {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
freemind = import ../applications/misc/freemind {
|
2008-09-07 22:17:49 +01:00
|
|
|
inherit fetchurl stdenv ant coreutils gnugrep;
|
2007-12-30 22:02:04 +00:00
|
|
|
jdk = jdk;
|
|
|
|
jre = jdk;
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
gimp = import ../applications/graphics/gimp {
|
|
|
|
inherit fetchurl stdenv pkgconfig freetype fontconfig
|
|
|
|
libtiff libjpeg libpng libexif zlib perl perlXMLParser
|
2008-10-10 00:21:39 +01:00
|
|
|
python pygtk gettext xlibs intltool babl gegl;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (gnome) gtk libgtkhtml libart_lgpl;
|
|
|
|
};
|
|
|
|
|
2008-05-22 10:58:31 +01:00
|
|
|
git = import ../applications/version-management/git {
|
|
|
|
inherit fetchurl stdenv curl openssl zlib expat perl gettext
|
|
|
|
asciidoc texinfo xmlto docbook2x
|
|
|
|
docbook_xsl docbook_xml_dtd_42 libxslt
|
2008-06-11 13:31:44 +01:00
|
|
|
cpio tcl tk makeWrapper subversion;
|
|
|
|
svnSupport = getConfig ["git" "svnSupport"] false; # for git-svn support
|
|
|
|
guiSupport = getConfig ["git" "guiSupport"] false;
|
|
|
|
perlLibs = [perlLWP perlURI perlTermReadKey subversion];
|
2008-05-22 10:58:31 +01:00
|
|
|
};
|
2008-03-27 10:57:54 +00:00
|
|
|
|
2008-08-03 13:23:27 +01:00
|
|
|
gitGit = import ../applications/version-management/git/git-git.nix {
|
|
|
|
inherit fetchurl stdenv curl openssl zlib expat perl gettext
|
|
|
|
asciidoc texinfo xmlto docbook2x
|
|
|
|
docbook_xsl docbook_xml_dtd_42 libxslt
|
|
|
|
cpio tcl tk makeWrapper subversion autoconf;
|
|
|
|
inherit (bleedingEdgeRepos) sourceByName;
|
|
|
|
svnSupport = getConfig ["git" "svnSupport"] false; # for git-svn support
|
|
|
|
guiSupport = getConfig ["git" "guiSupport"] false;
|
|
|
|
perlLibs = [perlLWP perlURI perlTermReadKey subversion];
|
|
|
|
};
|
|
|
|
|
2008-07-07 12:48:24 +01:00
|
|
|
qgit = import ../applications/version-management/qgit {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libXext libX11;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
|
|
|
|
2008-08-18 17:03:21 +01:00
|
|
|
qjackctl = import ../applications/audio/qjackctl {
|
|
|
|
inherit fetchurl stdenv alsaLib jackaudio;
|
|
|
|
qt4 = qt4;
|
|
|
|
};
|
|
|
|
|
2008-02-13 16:38:33 +00:00
|
|
|
gkrellm = import ../applications/misc/gkrellm {
|
|
|
|
inherit fetchurl stdenv gettext pkgconfig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
inherit (xlibs) libX11 libICE libSM;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gnash = assert mesaSupported; import ../applications/video/gnash {
|
2008-03-10 09:48:17 +00:00
|
|
|
inherit fetchurl stdenv SDL SDL_mixer libogg libxml2 libjpeg mesa libpng
|
2008-10-14 09:26:00 +01:00
|
|
|
boost freetype agg dbus curl pkgconfig x11 libtool lib libungif
|
2008-11-12 08:37:39 +00:00
|
|
|
gettext makeWrapper ming dejagnu python;
|
2008-03-10 09:48:17 +00:00
|
|
|
inherit (gtkLibs) glib gtk;
|
2008-11-12 08:37:39 +00:00
|
|
|
inherit (gst_all) gstreamer gstPluginsBase gstFfmpeg;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-08-24 19:48:09 +01:00
|
|
|
gnunet = import ../applications/networking/p2p/gnunet {
|
|
|
|
inherit fetchurl stdenv libextractor libmicrohttpd libgcrypt
|
|
|
|
gmp curl libtool guile adns sqlite gettext zlib pkgconfig
|
2008-09-04 21:24:03 +01:00
|
|
|
libxml2 ncurses findutils makeWrapper;
|
2008-08-24 19:48:09 +01:00
|
|
|
inherit (gnome) gtk libglade;
|
|
|
|
gtkSupport = getConfig [ "gnunet" "gtkSupport" ] true;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
gocr = composedArgsAndFun (selectVersion ../applications/graphics/gocr "0.44") {
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit builderDefs fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
gphoto2 = import ../applications/misc/gphoto2 {
|
2008-09-22 18:06:31 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libgphoto2 libexif popt gettext
|
|
|
|
libjpeg readline libtool;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-11-15 17:54:09 +00:00
|
|
|
qrdecode = builderDefsPackage (import ../tools/graphics/qrdecode) {
|
|
|
|
inherit libpng libcv;
|
|
|
|
};
|
|
|
|
|
|
|
|
qrencode = builderDefsPackage (import ../tools/graphics/qrencode) {
|
|
|
|
inherit libpng pkgconfig;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
gqview = import ../applications/graphics/gqview {
|
|
|
|
inherit fetchurl stdenv pkgconfig libpng;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
|
|
|
gv = import ../applications/misc/gv {
|
|
|
|
inherit fetchurl stdenv Xaw3d ghostscriptX;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
haskellMode = import ../applications/editors/emacs-modes/haskell {
|
2008-07-07 12:49:57 +01:00
|
|
|
inherit fetchurl stdenv emacs;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-06-17 15:19:59 +01:00
|
|
|
hello = import ../applications/misc/hello/ex-2 {
|
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
i810switch = import ../applications/misc/i810 {
|
|
|
|
inherit fetchurl stdenv pciutils;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-07-28 16:55:11 +01:00
|
|
|
icecat3 = lowPrio (import ../applications/networking/browsers/icecat-3 {
|
|
|
|
inherit fetchurl stdenv lzma pkgconfig perl zip libjpeg libpng zlib cairo
|
|
|
|
python dbus dbus_glib freetype fontconfig bzip2 xlibs;
|
2008-07-28 21:41:14 +01:00
|
|
|
inherit (gnome) libIDL libgnomeui gnomevfs gtk pango;
|
2008-07-28 16:55:11 +01:00
|
|
|
});
|
|
|
|
|
2008-09-29 22:58:25 +01:00
|
|
|
icecatXulrunner3 = lowPrio (import ../applications/networking/browsers/icecat-3 {
|
|
|
|
application = "xulrunner";
|
|
|
|
inherit fetchurl stdenv lzma pkgconfig perl zip libjpeg libpng zlib cairo
|
|
|
|
python dbus dbus_glib freetype fontconfig bzip2 xlibs;
|
|
|
|
inherit (gnome) libIDL libgnomeui gnomevfs gtk pango;
|
|
|
|
});
|
|
|
|
|
|
|
|
icecat3Xul =
|
|
|
|
(symlinkJoin "icecat-3-with-xulrunner" [ icecat3 icecatXulrunner3 ])
|
2008-12-12 09:38:31 +00:00
|
|
|
// { inherit (icecat3) gtk isFirefox3Like meta; };
|
2008-09-29 22:58:25 +01:00
|
|
|
|
|
|
|
icecatWrapper = wrapFirefox icecat3Xul "icecat" "";
|
2008-07-28 16:55:11 +01:00
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
icewm = import ../applications/window-managers/icewm {
|
|
|
|
inherit fetchurl stdenv gettext libjpeg libtiff libungif libpng imlib;
|
|
|
|
inherit (xlibs) libX11 libXft libXext libXinerama libXrandr;
|
|
|
|
};
|
|
|
|
|
2008-05-16 12:26:23 +01:00
|
|
|
imagemagick = import ../applications/graphics/ImageMagick {
|
|
|
|
inherit stdenv fetchurl bzip2 freetype graphviz ghostscript
|
|
|
|
libjpeg libpng libtiff libxml2 zlib libtool;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libX11;
|
2008-05-16 12:26:23 +01:00
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
|
2008-05-16 12:26:23 +01:00
|
|
|
imagemagickBig = import ../applications/graphics/ImageMagick {
|
|
|
|
inherit stdenv fetchurl bzip2 freetype graphviz ghostscript
|
|
|
|
libjpeg libpng libtiff libxml2 zlib tetex librsvg libtool;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libX11;
|
2008-05-16 12:26:23 +01:00
|
|
|
};
|
2007-12-30 22:02:04 +00:00
|
|
|
|
|
|
|
inkscape = import ../applications/graphics/inkscape {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig zlib
|
2008-02-03 13:18:37 +00:00
|
|
|
popt libxml2 libxslt libpng boehmgc fontconfig
|
2008-02-25 11:09:37 +00:00
|
|
|
libsigcxx lcms boost gettext cairomm
|
2008-02-22 16:24:58 +00:00
|
|
|
python pyxml makeWrapper;
|
2008-02-03 13:18:37 +00:00
|
|
|
inherit (gtkLibs) gtk glib glibmm gtkmm;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libXft;
|
|
|
|
};
|
|
|
|
|
|
|
|
ion3 = import ../applications/window-managers/ion-3 {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv x11 gettext groff;
|
|
|
|
lua = lua5;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
irssi = import ../applications/networking/irc/irssi {
|
|
|
|
inherit stdenv fetchurl pkgconfig ncurses openssl;
|
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
};
|
|
|
|
|
2008-06-04 12:59:42 +01:00
|
|
|
jedit = import ../applications/editors/jedit {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit fetchurl stdenv ant;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
joe = import ../applications/editors/joe {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2008-03-25 09:50:54 +00:00
|
|
|
jwm = import ../applications/window-managers/jwm {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXext libXinerama libXpm libXft;
|
|
|
|
};
|
|
|
|
|
2008-06-26 15:38:28 +01:00
|
|
|
k3b = import ../applications/misc/k3b {
|
|
|
|
inherit stdenv fetchurl kdelibs x11 zlib libpng libjpeg perl qt3;
|
|
|
|
};
|
|
|
|
|
2008-08-13 10:15:14 +01:00
|
|
|
keyjnote = import ../applications/office/keyjnote {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit fetchurl stdenv xpdf pil pyopengl pygame makeWrapper lib python;
|
2008-08-13 10:15:14 +01:00
|
|
|
|
|
|
|
# XXX These are the PyOpenGL dependencies, which we need here.
|
|
|
|
inherit setuptools mesa freeglut;
|
|
|
|
};
|
|
|
|
|
2008-01-13 15:21:21 +00:00
|
|
|
kino = import ../applications/video/kino {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig libxml2 perl perlXMLParser
|
2008-01-13 18:08:51 +00:00
|
|
|
libdv libraw1394 libavc1394 libiec61883 x11 gettext cairo; /* libavformat */
|
2008-01-13 15:21:21 +00:00
|
|
|
inherit libsamplerate ffmpeg;
|
2008-01-13 18:08:51 +00:00
|
|
|
inherit (gnome) libglade gtk glib;
|
2008-01-13 15:21:21 +00:00
|
|
|
inherit (xlibs) libXv libX11;
|
2008-01-13 18:08:51 +00:00
|
|
|
inherit (gtkLibs) pango;
|
2008-02-20 23:02:41 +00:00
|
|
|
# # optional
|
|
|
|
# inherit ffmpeg2theora sox, vorbis-tools lame mjpegtools dvdauthor 'Q'dvdauthor growisofs mencoder;
|
2008-01-13 15:21:21 +00:00
|
|
|
};
|
|
|
|
|
2008-04-21 14:12:44 +01:00
|
|
|
kile = import ../applications/editors/kile {
|
|
|
|
inherit stdenv fetchurl perl arts kdelibs zlib libpng libjpeg freetype expat;
|
2008-07-30 14:37:44 +01:00
|
|
|
inherit (xlibs) libX11 libXt libXext libXrender libXft;
|
2008-04-21 14:12:44 +01:00
|
|
|
qt = qt3;
|
|
|
|
};
|
|
|
|
|
2008-03-15 06:11:45 +00:00
|
|
|
/*kiwixBuilderFun = lib.sumArgs (import ../applications/misc/kiwixbuilder) {
|
|
|
|
inherit builderDefs;
|
|
|
|
inherit (gnome) glib;
|
|
|
|
zlib = zlibStatic;
|
|
|
|
};
|
|
|
|
|
|
|
|
kiwixBuilder = kiwixBuilderFun null;*/
|
|
|
|
|
2008-04-21 13:11:34 +01:00
|
|
|
konversation = import ../applications/networking/irc/konversation {
|
|
|
|
inherit fetchurl stdenv perl arts kdelibs zlib libpng libjpeg expat;
|
|
|
|
inherit (xlibs) libX11 libXt libXext;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00: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;
|
|
|
|
};
|
|
|
|
|
|
|
|
lame = import ../applications/audio/lame {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ladspaH = import ../applications/audio/ladspa-plugins/ladspah.nix {
|
|
|
|
inherit fetchurl stdenv builderDefs stringsWithDeps;
|
|
|
|
};
|
|
|
|
|
|
|
|
ladspaPlugins = import ../applications/audio/ladspa-plugins {
|
|
|
|
inherit fetchurl stdenv builderDefs stringsWithDeps fftw ladspaH pkgconfig;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
ldcpp = composedArgsAndFun (selectVersion ../applications/networking/p2p/ldcpp "1.0.1") {
|
2008-03-15 06:11:45 +00:00
|
|
|
inherit builderDefs scons pkgconfig bzip2 openssl;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libglade;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
links = import ../applications/networking/browsers/links {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
lynx = import ../applications/networking/browsers/lynx {
|
|
|
|
inherit fetchurl stdenv ncurses openssl;
|
|
|
|
};
|
|
|
|
|
2008-01-30 19:38:07 +00:00
|
|
|
lyx = import ../applications/misc/lyx {
|
2008-03-27 23:33:10 +00:00
|
|
|
inherit fetchurl stdenv texLive python;
|
2008-01-30 19:38:07 +00:00
|
|
|
qt = qt4;
|
|
|
|
};
|
|
|
|
|
2008-07-15 15:53:07 +01:00
|
|
|
maudeMode = import ../applications/editors/emacs-modes/maude {
|
|
|
|
inherit fetchurl stdenv emacs;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00:00
|
|
|
mercurial = import ../applications/version-management/mercurial {
|
2008-10-18 13:01:24 +01:00
|
|
|
inherit fetchurl stdenv python makeWrapper getConfig tk;
|
|
|
|
guiSupport = getConfig ["mercurial" "guiSupport"] false; # for hgk (gitk gui for hg)
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-09-07 13:58:56 +01:00
|
|
|
midori = builderDefsPackage (import ../applications/networking/browsers/midori) {
|
2008-10-09 11:10:49 +01:00
|
|
|
inherit imagemagick intltool python pkgconfig webkit libxml2
|
2008-09-15 11:30:04 +01:00
|
|
|
which gettext makeWrapper file;
|
2008-09-07 13:58:56 +01:00
|
|
|
inherit (gtkLibs) gtk glib;
|
|
|
|
inherit (gnome) gtksourceview;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
minicom = builderDefsPackage (selectVersion ../tools/misc/minicom "2.3") {
|
2008-04-11 10:32:27 +01:00
|
|
|
inherit ncurses;
|
|
|
|
};
|
|
|
|
|
2007-12-30 22:02:04 +00: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;
|
|
|
|
};
|
|
|
|
|
|
|
|
monodoc = import ../applications/editors/monodoc {
|
|
|
|
inherit fetchurl stdenv mono pkgconfig;
|
|
|
|
gtksharp = gtksharp1;
|
|
|
|
};
|
|
|
|
|
|
|
|
mozilla = import ../applications/networking/browsers/mozilla {
|
|
|
|
inherit fetchurl pkgconfig stdenv perl zip;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
};
|
|
|
|
|
2008-02-11 21:02:38 +00:00
|
|
|
mpg321 = import ../applications/audio/mpg321 {
|
|
|
|
inherit stdenv fetchurl libao libmad libid3tag zlib;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
MPlayer = lib.composedArgsAndFun (import ../applications/video/MPlayer) {
|
2008-03-06 09:34:36 +00:00
|
|
|
inherit fetchurl stdenv freetype x11 zlib libtheora libcaca freefont_ttf libdvdnav
|
|
|
|
cdparanoia;
|
2007-12-30 22:02:04 +00:00
|
|
|
inherit (xlibs) libX11 libXv libXinerama libXrandr;
|
|
|
|
alsaSupport = true;
|
|
|
|
alsa = alsaLib;
|
|
|
|
theoraSupport = true;
|
|
|
|
cacaSupport = true;
|
|
|
|
xineramaSupport = true;
|
|
|
|
randrSupport = true;
|
2008-03-06 09:34:36 +00:00
|
|
|
cddaSupport = true;
|
2007-12-30 22:02:04 +00:00
|
|
|
};
|
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
# commented out because it's using the new configuration style proposal which is unstable
|
|
|
|
# should be the same as the nix expression above except support for esound :)
|
|
|
|
/*
|
2007-12-30 22:02:04 +00:00
|
|
|
MPlayer_new_config = import ../applications/video/MPlayer/newconfig.nix {
|
|
|
|
inherit fetchurl stdenv freetype x11 zlib freefont_ttf lib;
|
|
|
|
inherit (xlibs) libX11 xextproto;
|
|
|
|
|
|
|
|
# optional features
|
|
|
|
inherit alsaLib libtheora libcaca;
|
|
|
|
inherit (gnome) esound;
|
|
|
|
inherit (xlibs) libXv libXinerama;
|
|
|
|
inherit (xlibs) libXrandr; # FIXME does this option exist? I couldn't find it as configure option
|
2007-09-18 00:24:58 +01:00
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2008-10-30 13:00:50 +00:00
|
|
|
MPlayerPlugin = browser:
|
2008-07-28 16:55:11 +01:00
|
|
|
import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in {
|
2008-10-30 13:00:50 +00:00
|
|
|
inherit browser;
|
2008-07-28 16:55:11 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig gettext;
|
|
|
|
inherit (xlibs) libXpm;
|
|
|
|
# !!! should depend on MPlayer
|
|
|
|
};
|
2003-11-13 13:11:38 +00:00
|
|
|
|
2007-09-04 21:06:18 +01:00
|
|
|
# commented out because it's using the new configuration style proposal which is unstable
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
|
|
|
mrxvt = import ../applications/misc/mrxvt {
|
|
|
|
inherit lib fetchurl stdenv;
|
|
|
|
inherit (xlibs) libXaw xproto libXt libX11 libSM libICE;
|
|
|
|
};
|
|
|
|
*/
|
2007-09-04 21:06:18 +01:00
|
|
|
|
2008-12-02 12:25:56 +00:00
|
|
|
multisync = import ../applications/misc/multisync {
|
|
|
|
inherit fetchurl stdenv autoconf automake libtool pkgconfig;
|
|
|
|
inherit (gnome) gtk glib ORBit2 libbonobo libgnomeui GConf;
|
|
|
|
};
|
|
|
|
|
2007-08-06 16:09:38 +01:00
|
|
|
mutt = import ../applications/networking/mailreaders/mutt {
|
2008-05-13 20:21:09 +01:00
|
|
|
inherit fetchurl stdenv ncurses which openssl gdbm;
|
2007-08-06 16:09:38 +01:00
|
|
|
};
|
|
|
|
|
2007-09-03 13:10:57 +01:00
|
|
|
msmtp = import ../applications/networking/msmtp {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
mythtv = import ../applications/video/mythtv {
|
2008-06-25 23:01:33 +01:00
|
|
|
inherit fetchurl stdenv which x11 xlibs lame zlib mesa freetype perl alsaLib;
|
2008-06-23 10:01:04 +01:00
|
|
|
qt3 = qt3mysql;
|
2004-12-10 23:16:23 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
nano = import ../applications/editors/nano {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ncurses gettext;
|
2006-01-20 11:30:24 +00:00
|
|
|
};
|
|
|
|
|
2007-05-01 21:35:58 +01:00
|
|
|
nanoDiet = lowPrio (appendToName "diet" (import ../applications/editors/nano {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl gettext;
|
|
|
|
ncurses = ncursesDiet;
|
2006-10-27 14:52:37 +01:00
|
|
|
stdenv = useDietLibC stdenv;
|
2007-05-01 21:35:58 +01:00
|
|
|
}));
|
2005-03-12 12:53:03 +00:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
nedit = import ../applications/editors/nedit {
|
|
|
|
inherit fetchurl stdenv x11;
|
|
|
|
inherit (xlibs) libXpm;
|
|
|
|
motif = lesstif;
|
2004-01-21 09:34:19 +00:00
|
|
|
};
|
|
|
|
|
2007-02-05 14:55:15 +00:00
|
|
|
nxml = import ../applications/editors/emacs-modes/nxml {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-01-19 22:51:27 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
openoffice = import ../applications/office/openoffice {
|
2007-09-05 14:56:12 +01:00
|
|
|
inherit fetchurl stdenv pam python tcsh libxslt
|
2006-09-15 16:28:53 +01:00
|
|
|
perl perlArchiveZip perlCompressZlib zlib libjpeg
|
|
|
|
expat pkgconfig freetype fontconfig libwpd libxml2
|
|
|
|
db4 sablotron curl libsndfile flex zip unzip libmspack
|
2008-11-16 12:35:59 +00:00
|
|
|
getopt file neon cairo which icu jdk ant hsqldb
|
2008-08-25 14:25:07 +01:00
|
|
|
cups openssl bison;
|
2008-11-16 12:35:59 +00:00
|
|
|
boost = boostVersionChoice "1.36.0";
|
2007-09-19 09:31:23 +01:00
|
|
|
inherit (xlibs) libXaw libXext libX11 libXtst libXi libXinerama;
|
2004-04-05 14:34:13 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
2003-11-11 16:13:13 +00:00
|
|
|
};
|
2007-07-19 11:32:09 +01:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
opera = import ../applications/networking/browsers/opera {
|
2008-09-27 01:45:55 +01:00
|
|
|
inherit fetchurl zlib glibc stdenv;
|
|
|
|
# stdenv = overrideGCC stdenv gcc40;
|
2006-09-29 10:06:56 +01:00
|
|
|
inherit (xlibs) libX11 libSM libICE libXt libXext;
|
2006-08-13 10:46:54 +01:00
|
|
|
qt = qt3;
|
2007-11-28 02:10:27 +00:00
|
|
|
#33motif = lesstif;
|
|
|
|
libstdcpp5 = (if (stdenv.system == "i686-linux") then gcc33 /* stdc++ 3.8 is used */ else gcc).gcc;
|
2006-08-13 10:46:54 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
pan = import ../applications/networking/newsreaders/pan {
|
2007-04-27 23:41:35 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig perl pcre gmime gettext;
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
spellChecking = false;
|
2005-09-07 15:57:30 +01:00
|
|
|
};
|
|
|
|
|
2008-04-26 00:40:18 +01:00
|
|
|
pidgin = import ../applications/networking/instant-messengers/pidgin {
|
2008-09-06 11:30:55 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 nss
|
|
|
|
gtkspell aspell gettext ncurses avahi dbus dbus_glib lib;
|
|
|
|
openssl = if (getConfig ["pidgin" "openssl"] true) then openssl else null;
|
|
|
|
gnutls = if (getConfig ["pidgin" "gnutls"] false) then gnutls else null;
|
2008-04-26 00:40:18 +01:00
|
|
|
GStreamer = gst_all.gstreamer;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) startupnotification;
|
|
|
|
inherit (xlibs) libXScrnSaver;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
pidginlatex = composedArgsAndFun (import ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex) {
|
2008-04-26 00:40:18 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig ghostscript pidgin texLive;
|
|
|
|
imagemagick = imagemagickBig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
2008-08-14 23:04:30 +01:00
|
|
|
pidginlatexSF = builderDefsPackage
|
2008-06-18 23:48:34 +01:00
|
|
|
(import ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/pidgin-latex-sf.nix)
|
2008-04-26 00:40:18 +01:00
|
|
|
{
|
|
|
|
inherit pkgconfig pidgin texLive imagemagick which;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
};
|
|
|
|
|
|
|
|
pidginotr = import ../applications/networking/instant-messengers/pidgin-plugins/otr {
|
|
|
|
inherit fetchurl stdenv libotr pidgin;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
pinfo = import ../applications/misc/pinfo {
|
2007-12-31 23:38:10 +00:00
|
|
|
inherit fetchurl stdenv ncurses readline;
|
2005-09-07 15:57:30 +01:00
|
|
|
};
|
|
|
|
|
2008-05-27 16:05:16 +01:00
|
|
|
pqiv = import ../applications/graphics/pqiv {
|
|
|
|
inherit fetchurl stdenv getopt which pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
2007-09-03 13:10:57 +01:00
|
|
|
# perhaps there are better apps for this task? It's how I had configured my preivous system.
|
|
|
|
# And I don't want to rewrite all rules
|
|
|
|
procmail = import ../applications/misc/procmail {
|
|
|
|
inherit fetchurl stdenv autoconf;
|
|
|
|
};
|
|
|
|
|
|
|
|
pstree = import ../applications/misc/pstree {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
};
|
|
|
|
|
2007-08-09 20:58:39 +01:00
|
|
|
pythonmagick = import ../applications/graphics/PythonMagick {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig imagemagick boost python;
|
2007-08-09 20:58:39 +01:00
|
|
|
};
|
|
|
|
|
2008-06-05 16:43:06 +01:00
|
|
|
qemu = import ../applications/virtualization/qemu/0.9.1.nix {
|
|
|
|
inherit fetchurl SDL zlib which;
|
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2007-12-31 08:49:41 +00:00
|
|
|
};
|
|
|
|
|
2008-08-25 14:25:07 +01:00
|
|
|
qemuImage = composedArgsAndFun
|
2008-01-31 17:32:28 +00:00
|
|
|
(selectVersion ../applications/virtualization/qemu/linux-img "0.2") {
|
2007-12-31 08:49:41 +00:00
|
|
|
inherit builderDefs fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-03-31 13:22:39 +01:00
|
|
|
quack = import ../applications/editors/emacs-modes/quack {
|
|
|
|
inherit fetchurl stdenv emacs;
|
|
|
|
};
|
|
|
|
|
2007-08-03 23:38:36 +01:00
|
|
|
ratpoison = import ../applications/window-managers/ratpoison {
|
|
|
|
inherit fetchurl stdenv fontconfig readline;
|
|
|
|
inherit (xlibs) libX11 inputproto libXt libXpm libXft
|
2008-03-17 09:41:28 +00:00
|
|
|
libXtst xextproto;
|
2007-08-03 23:38:36 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
rcs = import ../applications/version-management/rcs {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2005-03-11 10:46:20 +00:00
|
|
|
};
|
|
|
|
|
2008-01-28 12:28:23 +00:00
|
|
|
rdesktop = import ../applications/networking/remote/rdesktop {
|
|
|
|
inherit fetchurl stdenv openssl;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
RealPlayer = import ../applications/video/RealPlayer {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (gtkLibs) glib pango atk gtk;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
libstdcpp5 = gcc33.gcc;
|
2005-09-11 23:39:06 +01:00
|
|
|
};
|
|
|
|
|
2008-04-18 15:27:42 +01:00
|
|
|
remember = import ../applications/editors/emacs-modes/remember {
|
|
|
|
inherit fetchurl stdenv texinfo emacs bbdb;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
rsync = import ../applications/networking/sync/rsync {
|
2005-08-30 20:41:10 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2007-09-05 09:25:23 +01:00
|
|
|
rxvt = import ../applications/misc/rxvt {
|
|
|
|
inherit lib fetchurl stdenv;
|
|
|
|
inherit (xlibs) libXt libX11;
|
2007-09-12 16:49:28 +01:00
|
|
|
};
|
2007-09-12 11:56:56 +01:00
|
|
|
|
2007-10-31 12:17:14 +00:00
|
|
|
# = urxvt
|
|
|
|
rxvt_unicode = import ../applications/misc/rxvt_unicode {
|
2008-02-22 03:06:12 +00:00
|
|
|
inherit lib fetchurl stdenv perl;
|
2007-10-31 12:17:14 +00:00
|
|
|
inherit (xlibs) libXt libX11 libXft;
|
|
|
|
};
|
|
|
|
|
2007-09-12 11:56:56 +01:00
|
|
|
sbagen = import ../applications/misc/sbagen {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
skype_linux = import ../applications/networking/skype {
|
|
|
|
inherit fetchurl stdenv;
|
2008-03-10 13:09:47 +00:00
|
|
|
inherit glibc alsaLib freetype fontconfig libsigcxx gcc;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit (xlibs) libSM libICE libXi libXrender libXrandr libXfixes libXcursor
|
2007-09-12 11:56:56 +01:00
|
|
|
libXinerama libXext libX11;
|
2007-09-05 09:25:23 +01:00
|
|
|
};
|
|
|
|
|
2007-02-25 22:25:25 +00:00
|
|
|
slim = import ../applications/display-managers/slim {
|
2007-06-05 12:25:59 +01:00
|
|
|
inherit fetchurl stdenv x11 libjpeg libpng freetype pam;
|
2007-02-25 22:25:25 +00:00
|
|
|
inherit (xlibs) libXmu;
|
|
|
|
};
|
|
|
|
|
2008-08-19 06:54:09 +01:00
|
|
|
sndBase = builderDefsPackage (import ../applications/audio/snd) {
|
|
|
|
inherit fetchurl stdenv stringsWithDeps lib fftw;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit pkgconfig gmp gettext;
|
2008-06-16 17:33:11 +01:00
|
|
|
inherit (xlibs) libXpm libX11;
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit (gtkLibs) gtk glib;
|
2007-11-03 04:15:13 +00:00
|
|
|
};
|
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
snd = sndBase.passthru.function {
|
2008-08-18 17:03:38 +01:00
|
|
|
inherit guile mesa libtool jackaudio alsaLib;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2007-11-03 04:15:13 +00:00
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
sox = import ../applications/misc/audio/sox {
|
2007-12-04 22:06:13 +00:00
|
|
|
inherit fetchurl stdenv lib mkDerivationByConfiguration;
|
2008-06-18 23:48:34 +01:00
|
|
|
# optional features
|
2007-10-22 09:51:48 +01:00
|
|
|
inherit alsaLib; # libao
|
2007-10-22 01:51:40 +01:00
|
|
|
inherit libsndfile libogg flac libmad lame libsamplerate;
|
2008-03-17 09:41:28 +00:00
|
|
|
# Using the default nix ffmpeg I get this error when linking
|
|
|
|
# .libs/libsox_la-ffmpeg.o: In function `audio_decode_frame':
|
|
|
|
# /tmp/nix-7957-1/sox-14.0.0/src/ffmpeg.c:130: undefined reference to `avcodec_decode_audio2
|
|
|
|
# That's why I'v added ffmpeg_svn
|
2007-10-22 01:51:40 +01:00
|
|
|
ffmpeg = ffmpeg_svn;
|
2008-03-17 09:41:28 +00:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
spoofax = import ../applications/editors/eclipse/plugins/spoofax {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
2003-11-27 12:09:22 +00:00
|
|
|
};
|
|
|
|
|
2008-07-09 17:21:03 +01:00
|
|
|
|
|
|
|
stgit = import ../applications/version-management/stgit {
|
|
|
|
inherit fetchurl stdenv python git;
|
|
|
|
};
|
|
|
|
|
2008-08-09 21:21:33 +01:00
|
|
|
stumpwm = builderDefsPackage (import ../applications/window-managers/stumpwm) {
|
|
|
|
inherit clisp texinfo;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-08-09 21:21:33 +01:00
|
|
|
|
2008-10-16 12:01:18 +01:00
|
|
|
subversion = subversion15;
|
2005-11-13 15:03:49 +00:00
|
|
|
|
2008-08-26 17:50:33 +01:00
|
|
|
subversion14 = makeOverridable (import ../applications/version-management/subversion-1.4.x) {
|
2008-06-19 16:29:25 +01:00
|
|
|
inherit fetchurl stdenv apr aprutil expat swig zlib jdk;
|
|
|
|
neon = neon026;
|
2008-01-30 15:15:53 +00:00
|
|
|
bdbSupport = getConfig ["subversion" "bdbSupport"] true;
|
|
|
|
httpServer = getConfig ["subversion" "httpServer"] false;
|
|
|
|
sslSupport = getConfig ["subversion" "sslSupport"] true;
|
2008-03-17 09:41:28 +00:00
|
|
|
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
|
2008-01-28 19:33:23 +00:00
|
|
|
perlBindings = getConfig ["subversion" "perlBindings"] false;
|
2008-03-17 09:41:28 +00:00
|
|
|
javahlBindings = getConfig ["subversion" "javahlBindings"] false;
|
2008-01-30 15:15:53 +00:00
|
|
|
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
|
2006-09-15 16:28:53 +01:00
|
|
|
httpd = apacheHttpd;
|
2004-04-06 18:47:34 +01:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-10-07 00:01:54 +01:00
|
|
|
subversion15 = makeOverridable (import ../applications/version-management/subversion-1.5.x) {
|
2008-06-19 16:29:25 +01:00
|
|
|
inherit fetchurl stdenv apr aprutil expat swig zlib jdk;
|
|
|
|
neon = neon028;
|
|
|
|
bdbSupport = getConfig ["subversion" "bdbSupport"] true;
|
|
|
|
httpServer = getConfig ["subversion" "httpServer"] false;
|
|
|
|
httpSupport = getConfig ["subversion" "httpSupport"] true;
|
|
|
|
sslSupport = getConfig ["subversion" "sslSupport"] true;
|
|
|
|
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
|
|
|
|
perlBindings = getConfig ["subversion" "perlBindings"] false;
|
|
|
|
javahlBindings = getConfig ["subversion" "javahlBindings"] false;
|
|
|
|
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
|
|
|
|
httpd = apacheHttpd;
|
|
|
|
};
|
|
|
|
|
2008-10-16 13:42:29 +01:00
|
|
|
subversionStatic = lowPrio (appendToName "static" (import ../applications/version-management/subversion-1.5.x {
|
|
|
|
inherit fetchurl stdenv apr aprutil expat swig jdk;
|
|
|
|
neon = import ../development/libraries/neon/0.28.nix {
|
|
|
|
inherit fetchurl stdenv libxml2 zlib openssl;
|
2008-11-05 20:03:10 +00:00
|
|
|
compressionSupport = true;
|
|
|
|
sslSupport = true;
|
|
|
|
static = true;
|
|
|
|
shared = false;
|
2008-10-16 13:42:29 +01:00
|
|
|
};
|
|
|
|
zlib = import ../development/libraries/zlib {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
static = true;
|
|
|
|
};
|
|
|
|
bdbSupport = true;
|
|
|
|
httpServer = false;
|
|
|
|
httpSupport = true;
|
|
|
|
sslSupport = true;
|
|
|
|
pythonBindings = false;
|
|
|
|
perlBindings = false;
|
|
|
|
javahlBindings = false;
|
|
|
|
compressionSupport = true;
|
|
|
|
httpd = null;
|
|
|
|
static = true;
|
|
|
|
}));
|
|
|
|
|
2008-05-30 19:15:25 +01:00
|
|
|
svk = perlSVK;
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
sylpheed = import ../applications/networking/mailreaders/sylpheed {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig openssl gpgme;
|
2007-05-14 01:29:30 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
2006-09-15 16:28:53 +01:00
|
|
|
sslSupport = true;
|
|
|
|
gpgSupport = true;
|
2006-01-26 20:45:11 +00:00
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
# linux only by now
|
2007-11-11 08:16:23 +00:00
|
|
|
synergy = import ../applications/misc/synergy {
|
2008-03-15 04:35:29 +00:00
|
|
|
inherit bleedingEdgeRepos stdenv x11;
|
2007-11-11 08:16:23 +00:00
|
|
|
inherit (xlibs) xextproto libXtst inputproto;
|
|
|
|
};
|
|
|
|
|
2008-07-04 07:54:11 +01:00
|
|
|
tailor = builderDefsPackage (selectVersion ../applications/version-management/tailor "0.9.35") {
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit makeWrapper python;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-05-07 08:23:20 +01:00
|
|
|
|
2007-12-14 01:50:19 +00:00
|
|
|
/* does'nt work yet i686-linux only (32bit version)
|
|
|
|
teamspeak_client = import ../applications/networking/instant-messengers/teamspeak/client.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit glibc x11;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2008-05-29 20:12:53 +01:00
|
|
|
taskJuggler = import ../applications/misc/taskjuggler {
|
|
|
|
inherit stdenv fetchurl;
|
|
|
|
inherit zlib libpng perl expat;
|
|
|
|
qt = qt3;
|
|
|
|
|
|
|
|
inherit (xlibs) libX11 libXext libSM libICE;
|
|
|
|
|
|
|
|
# KDE support is not working yet.
|
|
|
|
inherit kdelibs kdebase;
|
|
|
|
withKde = pkgs.getConfig ["taskJuggler" "kde"] false;
|
|
|
|
};
|
|
|
|
|
2007-11-26 14:18:57 +00:00
|
|
|
thunderbird = import ../applications/networking/mailreaders/thunderbird-2.x {
|
2007-06-02 21:32:24 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig perl zip libjpeg libpng zlib cairo;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
#enableOfficialBranding = true;
|
|
|
|
};
|
|
|
|
|
2007-09-23 17:28:56 +01:00
|
|
|
timidity = import ../tools/misc/timidity {
|
|
|
|
inherit fetchurl stdenv alsaLib;
|
|
|
|
};
|
2007-09-23 15:47:11 +01:00
|
|
|
|
2008-02-17 13:44:30 +00:00
|
|
|
tla = import ../applications/version-management/arch {
|
|
|
|
inherit fetchurl stdenv diffutils gnutar gnupatch which;
|
|
|
|
};
|
|
|
|
|
2007-08-10 09:21:31 +01:00
|
|
|
unison = import ../applications/networking/sync/unison {
|
|
|
|
inherit fetchurl stdenv ocaml lablgtk makeWrapper;
|
|
|
|
inherit (xorg) xset fontschumachermisc;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
uucp = builderDefsPackage (selectVersion ../tools/misc/uucp "1.07") {
|
2008-04-11 10:32:27 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
valknut = import ../applications/networking/p2p/valknut {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv perl x11 libxml2 libjpeg libpng openssl dclib;
|
|
|
|
qt = qt3;
|
|
|
|
};
|
2006-02-24 21:42:57 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
vim = import ../applications/editors/vim {
|
2007-08-10 20:53:30 +01:00
|
|
|
inherit fetchurl stdenv ncurses lib;
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
2005-11-07 23:02:17 +00:00
|
|
|
|
2007-05-01 21:35:58 +01:00
|
|
|
vimDiet = lowPrio (appendToName "diet" (import ../applications/editors/vim-diet {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl;
|
|
|
|
ncurses = ncursesDiet;
|
2006-10-27 14:52:37 +01:00
|
|
|
stdenv = useDietLibC stdenv;
|
2007-05-01 21:35:58 +01:00
|
|
|
}));
|
2004-10-13 15:21:20 +01:00
|
|
|
|
2007-08-10 20:53:30 +01:00
|
|
|
vimHugeX = import ../applications/editors/vim {
|
2008-01-12 00:22:52 +00:00
|
|
|
inherit fetchurl stdenv lib ncurses pkgconfig
|
2008-03-17 09:41:28 +00:00
|
|
|
perl python tcl;
|
2007-08-10 20:53:30 +01:00
|
|
|
inherit (xlibs) libX11 libXext libSM libXpm
|
2008-03-17 09:41:28 +00:00
|
|
|
libXt libXaw libXau;
|
2007-08-10 20:53:30 +01:00
|
|
|
inherit (gtkLibs) glib gtk;
|
2008-01-12 00:22:52 +00:00
|
|
|
|
|
|
|
# Looks like python and perl can conflict
|
|
|
|
flags = ["hugeFeatures" "gtkGUI" "x11Support"
|
2008-03-17 09:41:28 +00:00
|
|
|
/*"perlSupport"*/ "pythonSupport" "tclSupport"];
|
2007-08-10 20:53:30 +01:00
|
|
|
};
|
|
|
|
|
2007-12-13 22:30:31 +00:00
|
|
|
vim_configurable = import ../applications/editors/vim/configurable.nix {
|
2008-01-16 03:29:56 +00:00
|
|
|
inherit fetchurl stdenv ncurses pkgconfig mkDerivationByConfiguration lib;
|
2007-12-12 07:20:41 +00:00
|
|
|
inherit (xlibs) libX11 libXext libSM libXpm
|
|
|
|
libXt libXaw libXau libXmu;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
features = "huge"; # one of tiny, small, normal, big or huge
|
|
|
|
# optional features by passing
|
2008-06-18 23:48:34 +01:00
|
|
|
# python
|
2007-12-12 07:20:41 +00:00
|
|
|
# TODO mzschemeinterp perlinterp
|
|
|
|
inherit python /*x11*/;
|
|
|
|
|
|
|
|
# optional features by flags
|
|
|
|
flags = [ "X11" ]; # only flag "X11" by now
|
|
|
|
};
|
|
|
|
|
2008-01-31 17:32:28 +00:00
|
|
|
/*virtualboxFun = lib.sumArgs (selectVersion ../applications/virtualization/virtualbox "1.5.2") {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit stdenv fetchurl builderDefs bridge_utils umlutilities kernelHeaders
|
2007-12-31 08:49:41 +00:00
|
|
|
wine jre libxslt SDL qt3 openssl zlib;
|
|
|
|
inherit (xorg) libXcursor;
|
|
|
|
inherit (gnome) libIDL;
|
|
|
|
};
|
|
|
|
|
2008-01-31 17:32:28 +00:00
|
|
|
virtualbox = virtualboxFun null;*/
|
2007-12-31 08:49:41 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
vlc = import ../applications/video/vlc {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv perl x11 wxGTK
|
2008-06-25 16:01:04 +01:00
|
|
|
zlib mpeg2dec a52dec libmad
|
2006-09-15 16:28:53 +01:00
|
|
|
libdvdread libdvdnav libdvdcss;
|
|
|
|
inherit (xlibs) libXv;
|
|
|
|
alsa = alsaLib;
|
2008-06-25 16:01:04 +01:00
|
|
|
ffmpeg = ffmpeg_svn;
|
2005-02-26 23:45:19 +00:00
|
|
|
};
|
|
|
|
|
2008-02-11 22:39:54 +00:00
|
|
|
vorbisTools = import ../applications/audio/vorbis-tools {
|
|
|
|
inherit fetchurl stdenv libogg libvorbis libao pkgconfig curl glibc
|
2008-03-17 09:41:28 +00:00
|
|
|
speex flac;
|
2008-02-11 22:39:54 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
w3m = import ../applications/networking/browsers/w3m {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ncurses openssl boehmgc gettext zlib;
|
|
|
|
graphicsSupport = false;
|
|
|
|
inherit (gtkLibs1x) gdkpixbuf;
|
2005-02-26 23:45:19 +00:00
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
# I'm keen on wmiimenu only >wmii-3.5 no longer has it...
|
2007-09-03 13:10:57 +01:00
|
|
|
wmiimenu = import ../applications/window-managers/wmii31 {
|
2008-06-08 22:41:07 +01:00
|
|
|
libixp = libixp_for_wmii;
|
2007-09-03 13:10:57 +01:00
|
|
|
inherit fetchurl /* fetchhg */ stdenv gawk;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
|
|
|
wmiiSnap = import ../applications/window-managers/wmii {
|
|
|
|
libixp = libixp_for_wmii;
|
|
|
|
inherit fetchurl /* fetchhg */ stdenv gawk;
|
2008-06-08 22:41:07 +01:00
|
|
|
inherit (xlibs) libX11 xextproto libXt libXext;
|
|
|
|
includeUnpack = getConfig ["stdenv" "includeUnpack"] false;
|
2007-03-18 23:58:22 +00:00
|
|
|
};
|
|
|
|
|
2008-02-13 14:26:01 +00:00
|
|
|
wordnet = import ../applications/misc/wordnet {
|
|
|
|
inherit stdenv fetchurl tcl tk x11 makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-07-28 17:25:09 +01:00
|
|
|
wrapFirefox = browser: browserName: nameSuffix: import ../applications/networking/browsers/firefox-wrapper {
|
|
|
|
inherit stdenv nameSuffix makeWrapper browser browserName;
|
2008-03-10 15:13:06 +00:00
|
|
|
plugins =
|
2008-09-19 10:46:21 +01:00
|
|
|
let enableAdobeFlash = getConfig [ browserName "enableAdobeFlash" ] true
|
2008-03-17 09:41:28 +00:00
|
|
|
&& system == "i686-linux";
|
2008-03-10 15:13:06 +00:00
|
|
|
in
|
|
|
|
([]
|
2008-03-17 09:41:28 +00:00
|
|
|
++ lib.optional (!enableAdobeFlash) gnash
|
|
|
|
++ lib.optional (enableAdobeFlash) flashplayer
|
|
|
|
# RealPlayer is disabled by default for legal reasons.
|
2008-09-19 10:46:21 +01:00
|
|
|
++ lib.optional (system != "i686-linux" && getConfig [browserName "enableRealPlayer"] false) RealPlayer
|
2008-10-30 13:00:50 +00:00
|
|
|
++ lib.optional (getConfig [browserName "enableMPlayer"] true) (MPlayerPlugin browser)
|
2008-09-19 10:46:21 +01:00
|
|
|
++ lib.optional (supportsJDK && getConfig [browserName "jre"] false && jrePlugin ? mozillaPlugin) jrePlugin
|
2008-03-17 09:41:28 +00:00
|
|
|
);
|
2004-10-06 12:32:20 +01:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
x11vnc = composedArgsAndFun (selectVersion ../tools/X11/x11vnc "0.9.3") {
|
2008-02-22 03:06:12 +00:00
|
|
|
inherit builderDefs openssl zlib libjpeg ;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit (xlibs) libXfixes fixesproto libXdamage damageproto
|
2008-02-22 03:06:12 +00:00
|
|
|
libX11 xproto libXtst libXinerama xineramaproto libXrandr randrproto
|
|
|
|
libXext xextproto inputproto recordproto;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
x2vnc = composedArgsAndFun (selectVersion ../tools/X11/x2vnc "1.7.2") {
|
2008-03-17 06:29:32 +00:00
|
|
|
inherit builderDefs;
|
|
|
|
inherit (xlibs) libX11 xproto xextproto libXext libXrandr randrproto;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xara = import ../applications/graphics/xara {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv autoconf automake libtool gettext cvs wxGTK
|
2007-12-03 14:33:54 +00:00
|
|
|
pkgconfig libxml2 zip libpng libjpeg shebangfix perl freetype;
|
2005-12-13 00:13:01 +00:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xawtv = import ../applications/video/xawtv {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv ncurses libjpeg perl;
|
|
|
|
inherit (xlibs) libX11 libXt libXft xproto libFS fontsproto libXaw libXpm libXext libSM libICE xextproto;
|
2005-12-22 10:49:43 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xchat = import ../applications/networking/irc/xchat {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig tcl;
|
2007-05-14 01:13:48 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
2003-12-08 11:56:50 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xchm = import ../applications/misc/xchm {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv wxGTK chmlib;
|
2004-10-06 13:06:23 +01:00
|
|
|
};
|
|
|
|
|
2008-10-04 16:24:08 +01:00
|
|
|
/* Doesn't work yet
|
2008-10-09 11:10:49 +01:00
|
|
|
|
2008-10-04 16:24:08 +01:00
|
|
|
xen = builderDefsPackage (import ../applications/virtualization/xen) {
|
|
|
|
inherit python e2fsprogs gnutls pkgconfig libjpeg
|
|
|
|
ncurses SDL libvncserver zlib;
|
|
|
|
texLive = if (getConfig ["xen" "texLive"] false) then texLive else null;
|
|
|
|
graphviz = if (getConfig ["xen" "graphviz"] false) then graphviz else null;
|
|
|
|
ghostscript = if (getConfig ["xen" "ghostscript"] false) then ghostscript else null;
|
|
|
|
}; */
|
|
|
|
|
2006-12-08 01:17:21 +00:00
|
|
|
xfig = import ../applications/graphics/xfig {
|
2006-12-27 18:14:57 +00:00
|
|
|
stdenv = overrideGCC stdenv gcc34;
|
2006-12-08 01:17:21 +00:00
|
|
|
inherit fetchurl makeWrapper x11 Xaw3d libpng libjpeg;
|
|
|
|
inherit (xlibs) imake libXpm libXmu libXi libXp;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xineUI = import ../applications/video/xine-ui {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig x11 xineLib libpng readline ncurses curl;
|
|
|
|
inherit (xorg) libXext libXv libXxf86vm libXtst inputproto;
|
2004-12-06 07:36:56 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xmms = import ../applications/audio/xmms {
|
2006-09-15 16:28:53 +01:00
|
|
|
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 14:17:06 +01:00
|
|
|
};
|
|
|
|
|
2008-04-15 21:03:25 +01:00
|
|
|
xmobar = import ../applications/misc/xmobar {
|
|
|
|
inherit cabal X11;
|
|
|
|
};
|
|
|
|
|
2008-01-16 10:35:49 +00:00
|
|
|
xmonad = import ../applications/window-managers/xmonad {
|
2008-04-12 13:34:21 +01:00
|
|
|
inherit cabal X11;
|
2008-01-16 10:35:49 +00:00
|
|
|
inherit (xlibs) xmessage;
|
|
|
|
};
|
|
|
|
|
2008-04-14 21:57:28 +01:00
|
|
|
xmonadContrib = import ../applications/window-managers/xmonad/xmonad-contrib.nix {
|
|
|
|
inherit cabal xmonad X11;
|
|
|
|
};
|
|
|
|
|
2008-03-20 09:52:40 +00:00
|
|
|
xneur = import ../applications/misc/xneur {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig pcre libxml2 aspell;
|
2008-03-20 09:52:40 +00:00
|
|
|
GStreamer=gst_all.gstreamer;
|
2008-11-03 19:16:21 +00:00
|
|
|
inherit (xlibs) libX11 libXpm;
|
2008-03-20 09:52:40 +00:00
|
|
|
inherit (gtkLibs) glib;
|
2008-06-18 23:48:34 +01:00
|
|
|
};
|
2008-03-20 09:52:40 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xpdf = import ../applications/misc/xpdf {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv x11 freetype t1lib;
|
|
|
|
motif = lesstif;
|
2007-10-03 13:16:48 +01:00
|
|
|
base14Fonts = "${ghostscript}/share/ghostscript/fonts";
|
2006-08-30 00:40:29 +01:00
|
|
|
};
|
|
|
|
|
2008-03-17 13:45:50 +00:00
|
|
|
xpra = import ../tools/X11/xpra {
|
|
|
|
inherit stdenv fetchurl pkgconfig python pygtk xlibs makeWrapper;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
pyrex = pyrex095;
|
|
|
|
};
|
|
|
|
|
2008-09-24 14:58:23 +01:00
|
|
|
xscreensaverBase = composedArgsAndFun (import ../applications/graphics/xscreensaver) {
|
2007-11-22 20:26:00 +00:00
|
|
|
inherit stdenv fetchurl builderDefs lib pkgconfig bc perl intltool;
|
|
|
|
inherit (xlibs) libX11 libXmu;
|
|
|
|
};
|
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
xscreensaver = xscreensaverBase.passthru.function {
|
2007-11-26 13:24:56 +00:00
|
|
|
flags = ["GL" "gdkpixbuf" "DPMS" "gui" "jpeg"];
|
|
|
|
inherit mesa libxml2 libjpeg;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) libglade;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2007-11-22 20:26:00 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
xterm = import ../applications/misc/xterm {
|
2008-02-22 03:06:12 +00:00
|
|
|
inherit fetchurl stdenv ncurses freetype pkgconfig;
|
|
|
|
inherit (xlibs) libXaw xproto libXt libX11 libSM libICE libXext libXft luit;
|
2004-07-30 13:57:27 +01:00
|
|
|
};
|
2004-02-13 14:42:28 +00:00
|
|
|
|
2007-12-31 08:49:41 +00:00
|
|
|
xlaunch = import ../tools/X11/xlaunch {
|
|
|
|
inherit stdenv;
|
|
|
|
inherit (xorg) xorgserver;
|
|
|
|
};
|
|
|
|
|
2007-08-10 19:54:44 +01:00
|
|
|
xmacro = import ../tools/X11/xmacro {
|
|
|
|
inherit fetchurl stdenv;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit (xlibs) libX11 libXi
|
2008-03-17 09:41:28 +00:00
|
|
|
libXtst xextproto inputproto;
|
2007-08-10 19:54:44 +01:00
|
|
|
};
|
|
|
|
|
2007-06-25 22:46:18 +01:00
|
|
|
xmove = import ../applications/misc/xmove {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXi imake libXau;
|
|
|
|
inherit (xorg) xauth;
|
|
|
|
};
|
2007-12-31 08:49:41 +00:00
|
|
|
|
2008-08-14 10:25:26 +01:00
|
|
|
xnee = builderDefsPackage (import ../tools/X11/xnee) {
|
|
|
|
inherit (gtkLibs) gtk;
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit (xlibs) libX11 libXtst xextproto libXext
|
2008-08-14 10:25:26 +01:00
|
|
|
inputproto libXi xproto recordproto;
|
|
|
|
inherit pkgconfig;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-08-14 10:25:26 +01:00
|
|
|
|
2006-12-01 16:44:26 +00:00
|
|
|
xvidcap = import ../applications/video/xvidcap {
|
|
|
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (gnome) scrollkeeper libglade;
|
|
|
|
inherit (xlibs) libXmu libXext;
|
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
# doesn't compile yet - in case someone else want's to continue ..
|
2007-12-10 22:36:52 +00:00
|
|
|
/*
|
|
|
|
qgis_svn = import ../applications/misc/qgis_svn {
|
2008-02-20 23:02:41 +00:00
|
|
|
inherit mkDerivationByConfiguration fetchsvn stdenv flex lib
|
2007-12-10 22:36:52 +00:00
|
|
|
ncurses fetchurl perl cmake gdal geos proj x11
|
2008-08-25 14:25:07 +01:00
|
|
|
gsl libpng zlib bison
|
2008-01-16 03:29:56 +00:00
|
|
|
sqlite glibc fontconfig freetype / * use libc from stdenv ? - to lazy now - Marc * /;
|
2007-12-10 22:36:52 +00:00
|
|
|
inherit (xlibs) libSM libXcursor libXinerama libXrandr libXrender;
|
|
|
|
inherit (xorg) libICE;
|
|
|
|
qt = qt4;
|
|
|
|
|
|
|
|
# optional features
|
|
|
|
# grass = "not yet supported" # cmake -D WITH_GRASS=TRUE and GRASS_PREFX=..
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
zapping = import ../applications/video/zapping {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig perl python
|
2006-09-15 16:28:53 +01:00
|
|
|
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 00:04:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-04-01 17:02:53 +01:00
|
|
|
### GAMES
|
|
|
|
|
2008-10-04 11:08:59 +01:00
|
|
|
ballAndPaddle = import ../games/ball-and-paddle {
|
|
|
|
inherit fetchurl stdenv SDL SDL_image SDL_mixer SDL_ttf guile gettext;
|
|
|
|
};
|
|
|
|
|
2008-10-06 23:49:37 +01:00
|
|
|
castleCombat = import ../games/castle-combat {
|
|
|
|
inherit fetchurl stdenv python pygame twisted lib numeric makeWrapper;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
construoBase = composedArgsAndFun (selectVersion ../games/construo "0.2.2") {
|
2007-12-03 04:48:44 +00:00
|
|
|
inherit stdenv fetchurl builderDefs
|
|
|
|
zlib;
|
|
|
|
inherit (xlibs) libX11 xproto;
|
|
|
|
};
|
|
|
|
|
2008-11-04 21:24:10 +00:00
|
|
|
construo = construoBase.passthru.function {
|
2007-12-03 04:48:44 +00:00
|
|
|
inherit mesa freeglut;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2004-04-01 17:02:53 +01:00
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
exult = import ../games/exult {
|
2008-06-25 16:01:04 +01:00
|
|
|
inherit fetchurl stdenv SDL SDL_mixer zlib libpng unzip;
|
2006-08-09 00:39:03 +01:00
|
|
|
};
|
|
|
|
|
2008-07-12 18:00:57 +01:00
|
|
|
exultSnapshot = lowPrio (import ../games/exult/snapshot.nix {
|
|
|
|
inherit fetchurl stdenv SDL SDL_mixer zlib libpng unzip
|
2008-08-25 14:25:07 +01:00
|
|
|
autoconf automake libtool flex bison;
|
2008-07-12 18:00:57 +01:00
|
|
|
});
|
|
|
|
|
2007-10-27 18:55:13 +01:00
|
|
|
fsg = import ../games/fsg {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit stdenv fetchurl pkgconfig;
|
|
|
|
inherit (gtkLibs) glib gtk;
|
|
|
|
wxGTK = wxGTK28deps {unicode = false;};
|
2007-10-27 18:55:13 +01:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-10-29 10:52:04 +00:00
|
|
|
fsgAltBuild = import ../games/fsg/alt-builder.nix {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit stdenv fetchurl;
|
|
|
|
wxGTK = wxGTK28deps {unicode = false;};
|
|
|
|
stringsWithDeps = import ../lib/strings-with-deps.nix {
|
|
|
|
inherit stdenv lib;
|
|
|
|
};
|
|
|
|
inherit builderDefs;
|
2007-10-29 10:52:04 +00:00
|
|
|
};
|
2007-10-27 18:55:13 +01:00
|
|
|
|
2007-05-14 22:47:11 +01:00
|
|
|
gemrb = import ../games/gemrb {
|
|
|
|
inherit fetchurl stdenv SDL openal freealut zlib libpng python;
|
|
|
|
};
|
|
|
|
|
2008-08-08 08:16:34 +01:00
|
|
|
lincity = builderDefsPackage (import ../games/lincity) {
|
2008-08-25 14:25:07 +01:00
|
|
|
inherit (xlibs) libX11 libXext xextproto
|
2008-08-08 08:16:34 +01:00
|
|
|
libICE libSM xproto;
|
|
|
|
inherit libpng zlib;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-08-08 08:16:34 +01:00
|
|
|
|
2008-08-06 21:39:01 +01:00
|
|
|
micropolis = import ../games/micropolis {
|
|
|
|
inherit lib fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXpm libXext xextproto;
|
|
|
|
inherit byacc bash;
|
|
|
|
};
|
|
|
|
|
2008-04-10 23:12:20 +01:00
|
|
|
openttd = import ../games/openttd {
|
|
|
|
inherit fetchurl stdenv SDL libpng;
|
|
|
|
zlib = zlibStatic;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
quake3demo = import ../games/quake3/wrapper {
|
2008-06-14 21:55:48 +01:00
|
|
|
name = "quake3-demo-${quake3game.name}";
|
2006-10-11 17:45:55 +01:00
|
|
|
description = "Demo of Quake 3 Arena, a classic first-person shooter";
|
2008-06-14 21:55:48 +01:00
|
|
|
inherit fetchurl stdenv mesa makeWrapper;
|
2006-09-15 16:28:53 +01:00
|
|
|
game = quake3game;
|
|
|
|
paks = [quake3demodata];
|
2006-01-26 14:43:05 +00:00
|
|
|
};
|
|
|
|
|
2006-01-27 23:51:36 +00:00
|
|
|
quake3demodata = import ../games/quake3/demo {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-09-15 16:28:53 +01:00
|
|
|
quake3game = import ../games/quake3/game {
|
|
|
|
inherit fetchurl stdenv x11 SDL mesa openal;
|
|
|
|
};
|
|
|
|
|
2007-01-08 21:19:15 +00:00
|
|
|
rogue = import ../games/rogue {
|
|
|
|
inherit fetchurl stdenv ncurses;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
scummvm = import ../games/scummvm {
|
2007-05-03 17:13:14 +01:00
|
|
|
inherit fetchurl stdenv SDL zlib mpeg2dec;
|
2004-06-09 19:06:29 +01:00
|
|
|
};
|
|
|
|
|
2008-01-22 17:56:53 +00:00
|
|
|
# You still can override by passing more arguments.
|
2008-08-14 23:04:30 +01:00
|
|
|
spaceOrbit = composedArgsAndFun (selectVersion ../games/orbit "1.01") {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv builderDefs mesa freeglut;
|
2008-01-22 17:56:53 +00:00
|
|
|
inherit (gnome) esound;
|
|
|
|
inherit (xlibs) libXt libX11 libXmu libXi libXext;
|
|
|
|
};
|
|
|
|
|
2008-10-12 15:28:51 +01:00
|
|
|
superTuxKart = import ../games/super-tux-kart {
|
|
|
|
inherit fetchurl stdenv plib SDL openal freealut mesa
|
|
|
|
libvorbis libogg gettext;
|
|
|
|
};
|
|
|
|
|
2007-08-09 18:33:18 +01:00
|
|
|
/*tpm = import ../games/thePenguinMachine {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit stdenv fetchurl pil pygame SDL;
|
2007-08-09 18:33:18 +01:00
|
|
|
python24 = python;
|
|
|
|
};*/
|
|
|
|
|
2006-01-30 11:44:39 +00:00
|
|
|
ut2004demo = import ../games/ut2004demo {
|
2004-06-09 19:06:29 +01:00
|
|
|
inherit fetchurl stdenv xlibs mesa;
|
|
|
|
};
|
2004-06-09 18:59:46 +01:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
zoom = import ../games/zoom {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv perl expat freetype;
|
|
|
|
inherit (xlibs) xlibs;
|
2006-09-12 00:06:26 +01:00
|
|
|
};
|
|
|
|
|
2006-10-28 23:28:35 +01:00
|
|
|
keen4 = import ../games/keen4 {
|
|
|
|
inherit fetchurl stdenv dosbox unzip;
|
|
|
|
};
|
|
|
|
|
2004-04-01 17:02:53 +01:00
|
|
|
|
2007-02-28 16:18:58 +00:00
|
|
|
### DESKTOP ENVIRONMENTS
|
|
|
|
|
|
|
|
|
|
|
|
gnome = recurseIntoAttrs (import ../desktops/gnome {
|
2008-05-20 15:25:09 +01:00
|
|
|
inherit
|
|
|
|
fetchurl stdenv pkgconfig
|
|
|
|
flex bison popt zlib libxml2 libxslt
|
|
|
|
perl perlXMLParser docbook_xml_dtd_42 docbook_xml_dtd_412
|
|
|
|
gettext x11 libtiff libjpeg libpng gtkLibs xlibs bzip2
|
|
|
|
libcm python dbus_glib ncurses which libxml2Python
|
2008-10-26 08:39:38 +00:00
|
|
|
iconnamingutils openssl hal samba fam libgcrypt libtasn1
|
2008-12-02 12:27:17 +00:00
|
|
|
xmlto docbook2x docbook_xsl intltool;
|
2007-02-28 16:18:58 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
kdelibs = import ../desktops/kde/kdelibs {
|
|
|
|
inherit
|
2008-06-19 23:20:49 +01:00
|
|
|
fetchurl stdenv xlibs zlib perl openssl pcre pkgconfig
|
2007-02-28 16:18:58 +00:00
|
|
|
libjpeg libpng libtiff libxml2 libxslt libtool
|
2008-06-19 23:20:49 +01:00
|
|
|
expat freetype bzip2 cups attr acl;
|
2007-02-28 16:18:58 +00:00
|
|
|
qt = qt3;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-11-15 00:11:56 +00:00
|
|
|
kde4 = recurseIntoAttrs (import ../desktops/kde-4 {
|
|
|
|
inherit
|
|
|
|
fetchurl fetchsvn zlib perl openssl pcre pkgconfig libjpeg libpng libtiff
|
|
|
|
libxml2 libxslt libtool libusb expat freetype bzip2 cmake cluceneCore libgcrypt gnupg
|
2008-03-17 09:41:28 +00:00
|
|
|
cppunit cyrus_sasl openldap enchant exiv2 samba nss log4cxx aspell
|
2007-11-15 00:11:56 +00:00
|
|
|
shared_mime_info alsaLib libungif cups mesa boost gpgme gettext redland
|
2008-03-17 09:41:28 +00:00
|
|
|
xineLib libgphoto2 djvulibre libogg flac lame libvorbis poppler readline
|
|
|
|
saneBackends chmlib python libzip gmp sqlite libidn runCommand lib
|
|
|
|
openbabel ocaml facile stdenv jasper fam indilib libnova
|
2008-08-25 18:55:09 +01:00
|
|
|
libarchive dbus bison;
|
2008-03-17 09:41:28 +00:00
|
|
|
#flac = builtins.getAttr "1.1.2" flacAlts;
|
|
|
|
cdparanoia = cdparanoiaIII;
|
2007-11-15 00:11:56 +00:00
|
|
|
inherit (xlibs)
|
|
|
|
inputproto kbproto scrnsaverproto xextproto xf86miscproto
|
|
|
|
xf86vidmodeproto xineramaproto xproto libICE libX11 libXau libXcomposite
|
|
|
|
libXcursor libXdamage libXdmcp libXext libXfixes libXft libXi libXpm
|
|
|
|
libXrandr libXrender libXScrnSaver libXt libXtst libXv libXxf86misc
|
2008-08-25 18:55:09 +01:00
|
|
|
libxkbfile libXinerama;
|
2007-11-15 00:11:56 +00:00
|
|
|
inherit (gtkLibs) glib;
|
|
|
|
qt = qt4;
|
2007-12-01 16:20:23 +00:00
|
|
|
openexr = openexr_1_6_1 ;
|
2007-11-15 00:11:56 +00:00
|
|
|
});
|
|
|
|
|
2007-03-26 16:49:38 +01:00
|
|
|
kdebase = import ../desktops/kde/kdebase {
|
|
|
|
inherit
|
2007-03-29 18:56:33 +01:00
|
|
|
fetchurl stdenv pkgconfig x11 xlibs zlib libpng libjpeg perl
|
2008-06-19 23:20:49 +01:00
|
|
|
kdelibs openssl bzip2 fontconfig pam hal dbus;
|
|
|
|
inherit (gtkLibs) glib;
|
2007-03-26 16:49:38 +01:00
|
|
|
qt = qt3;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2008-10-05 10:04:30 +01:00
|
|
|
### SCIENCE/GEOMETRY
|
2008-04-15 10:35:52 +01:00
|
|
|
|
2008-06-27 20:15:01 +01:00
|
|
|
drgeo = builderDefsPackage (import ../applications/science/geometry/drgeo) {
|
|
|
|
inherit (gnome) libglade gtk;
|
|
|
|
inherit libxml2 guile perl intltool libtool pkgconfig;
|
2008-08-14 23:04:30 +01:00
|
|
|
};
|
2008-06-27 20:15:01 +01:00
|
|
|
|
2008-10-05 10:04:30 +01:00
|
|
|
### SCIENCE/BIOLOGY
|
|
|
|
|
|
|
|
arb = import ../applications/science/biology/arb {
|
2008-10-06 16:11:36 +01:00
|
|
|
inherit fetchurl stdenv readline libpng zlib x11 lesstif93 freeglut perl;
|
2008-10-06 14:18:02 +01:00
|
|
|
inherit (xlibs) libXpm libXaw libX11 libXext libXt;
|
2008-10-07 15:35:11 +01:00
|
|
|
inherit mesa glew libtiff lynx rxp sablotron jdk transfig gv gnuplot;
|
2008-10-06 16:11:36 +01:00
|
|
|
lesstif = lesstif93;
|
2008-10-05 10:04:30 +01:00
|
|
|
};
|
2008-08-07 16:01:21 +01:00
|
|
|
|
|
|
|
biolib = import ../development/libraries/science/biology/biolib {
|
|
|
|
inherit fetchurl stdenv readline perl cmake rLang zlib;
|
|
|
|
};
|
|
|
|
|
2008-06-05 18:15:27 +01:00
|
|
|
emboss = import ../applications/science/biology/emboss {
|
|
|
|
inherit fetchurl stdenv readline perl libpng zlib;
|
2008-07-23 14:40:03 +01:00
|
|
|
inherit (xorg) libX11 libXt;
|
2008-06-05 18:15:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mrbayes = import ../applications/science/biology/mrbayes {
|
|
|
|
inherit fetchurl stdenv readline;
|
|
|
|
};
|
|
|
|
|
2008-06-07 07:34:02 +01:00
|
|
|
ncbi_tools = import ../applications/science/biology/ncbi-tools {
|
2008-06-06 20:42:00 +01:00
|
|
|
inherit fetchurl stdenv cpio;
|
|
|
|
};
|
|
|
|
|
2008-06-06 09:23:49 +01:00
|
|
|
paml = import ../applications/science/biology/paml {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-10-05 13:55:00 +01:00
|
|
|
/* slr = import ../applications/science/biology/slr {
|
2008-10-05 10:04:30 +01:00
|
|
|
inherit fetchurl stdenv liblapack;
|
2008-10-05 13:55:00 +01:00
|
|
|
}; */
|
2008-10-05 10:04:30 +01:00
|
|
|
|
2008-09-19 14:39:17 +01:00
|
|
|
pal2nal = import ../applications/science/biology/pal2nal {
|
|
|
|
inherit fetchurl stdenv perl paml;
|
|
|
|
};
|
|
|
|
|
2008-10-05 10:04:30 +01:00
|
|
|
### SCIENCE/MATH
|
|
|
|
|
|
|
|
atlas = import ../development/libraries/science/math/atlas {
|
|
|
|
inherit fetchurl stdenv gfortran;
|
|
|
|
};
|
|
|
|
|
2008-10-05 13:55:00 +01:00
|
|
|
/* liblapack = import ../development/libraries/science/math/liblapack {
|
2008-10-05 10:04:30 +01:00
|
|
|
inherit fetchurl stdenv gfortran;
|
2008-10-05 13:55:00 +01:00
|
|
|
}; */
|
2008-10-05 10:04:30 +01:00
|
|
|
|
2008-06-04 16:10:05 +01:00
|
|
|
### SCIENCE/LOGIC
|
|
|
|
|
|
|
|
coq = import ../applications/science/logic/coq {
|
|
|
|
inherit fetchurl stdenv ocaml ncurses;
|
|
|
|
};
|
2008-04-15 10:35:52 +01:00
|
|
|
|
2008-08-21 21:43:53 +01:00
|
|
|
### SCIENCE / ELECTRONICS
|
|
|
|
|
|
|
|
ngspice = import ../applications/science/electronics/ngspice {
|
|
|
|
inherit fetchurl stdenv readline;
|
|
|
|
};
|
|
|
|
|
2008-09-05 18:12:04 +01:00
|
|
|
### SCIENCE / MATH
|
|
|
|
|
2008-09-05 18:21:45 +01:00
|
|
|
maxima = import ../applications/science/math/maxima {
|
|
|
|
inherit fetchurl stdenv clisp;
|
|
|
|
};
|
|
|
|
|
2008-09-05 18:12:04 +01:00
|
|
|
scilab = (import ../applications/science/math/scilab) {
|
|
|
|
inherit stdenv fetchurl lib g77;
|
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit ncurses Xaw3d tcl tk ocaml x11;
|
|
|
|
|
|
|
|
withXaw3d = false;
|
|
|
|
withTk = true;
|
|
|
|
withGtk = false;
|
|
|
|
withOCaml = true;
|
|
|
|
withX = true;
|
|
|
|
};
|
|
|
|
|
2004-02-13 14:42:28 +00:00
|
|
|
### MISC
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
atari800 = import ../misc/emulators/atari800 {
|
2006-08-12 23:33:51 +01:00
|
|
|
inherit fetchurl stdenv unzip zlib SDL;
|
2004-11-03 21:28:03 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
ataripp = import ../misc/emulators/atari++ {
|
2004-11-03 21:28:03 +00:00
|
|
|
inherit fetchurl stdenv x11 SDL;
|
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-09-20 12:31:31 +01:00
|
|
|
auctex = import ../misc/tex/auctex {
|
2008-03-25 11:33:20 +00:00
|
|
|
inherit stdenv fetchurl emacs texLive;
|
2007-09-20 12:31:31 +01:00
|
|
|
};
|
2004-11-03 21:28:03 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
busybox = import ../misc/busybox {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
cups = import ../misc/cups {
|
2008-11-07 13:36:57 +00:00
|
|
|
inherit fetchurl stdenv zlib libjpeg libpng libtiff pam openssl;
|
2006-09-15 16:28:53 +01:00
|
|
|
};
|
|
|
|
|
2007-11-01 14:37:23 +00:00
|
|
|
dblatex = import ../misc/tex/dblatex {
|
|
|
|
inherit fetchurl stdenv python libxslt tetex;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
dosbox = import ../misc/emulators/dosbox {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv SDL;
|
|
|
|
};
|
|
|
|
|
2008-03-12 20:46:47 +00:00
|
|
|
dpkg = import ../tools/package-management/dpkg {
|
|
|
|
inherit fetchurl stdenv perl zlib bzip2;
|
|
|
|
};
|
2008-06-08 04:56:32 +01:00
|
|
|
|
|
|
|
freestyle = import ../misc/freestyle {
|
|
|
|
inherit fetchurl freeglut qt4 libpng lib3ds libQGLViewer swig;
|
|
|
|
inherit (xlibs) libXi;
|
|
|
|
#stdenv = overrideGCC stdenv gcc41;
|
2008-09-24 09:50:32 +01:00
|
|
|
inherit stdenv python;
|
2008-06-08 04:56:32 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
generator = import ../misc/emulators/generator {
|
2007-06-09 21:45:01 +01:00
|
|
|
inherit fetchurl stdenv SDL nasm zlib bzip2 libjpeg;
|
2005-12-03 01:33:18 +00:00
|
|
|
inherit (gtkLibs1x) gtk;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
ghostscript = import ../misc/ghostscript {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv libjpeg libpng zlib x11;
|
|
|
|
x11Support = false;
|
2005-12-03 02:32:02 +00:00
|
|
|
};
|
|
|
|
|
2007-08-14 15:09:58 +01:00
|
|
|
ghostscriptX = lowPrio (appendToName "with-X" (import ../misc/ghostscript {
|
|
|
|
inherit fetchurl stdenv libjpeg libpng zlib x11;
|
|
|
|
x11Support = true;
|
|
|
|
}));
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2007-09-04 14:35:02 +01:00
|
|
|
# commented out because it's using the new configuration style proposal which is unstable
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
|
|
|
gxemul = (import ../misc/gxemul) {
|
|
|
|
inherit lib stdenv fetchurl;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
*/
|
2007-10-03 23:38:09 +01:00
|
|
|
|
2007-10-06 19:17:47 +01:00
|
|
|
# using the new configuration style proposal which is unstable
|
2007-10-03 23:38:09 +01:00
|
|
|
jackaudio = import ../misc/jackaudio {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit mkDerivationByConfiguration
|
2008-08-18 17:03:04 +01:00
|
|
|
ncurses lib stdenv fetchurl alsaLib pkgconfig;
|
|
|
|
flags = [ "posix_shm" "timestamps" "alsa"];
|
2007-10-06 19:17:47 +01:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-08-04 16:12:14 +01:00
|
|
|
keynav = import ../tools/X11/keynav {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit stdenv fetchurl;
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit (xlibs) libX11 xextproto libXtst
|
2008-03-17 09:41:28 +00:00
|
|
|
imake libXi libXext;
|
2007-08-04 16:12:14 +01:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
lazylist = import ../misc/tex/lazylist {
|
2006-01-27 20:51:41 +00:00
|
|
|
inherit fetchurl stdenv tetex;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
linuxwacom = import ../misc/linuxwacom {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXi;
|
2006-01-27 20:51:41 +00:00
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
martyr = import ../development/libraries/martyr {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv fetchurl apacheAnt;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
maven = import ../misc/maven/maven-1.0.nix {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit stdenv fetchurl jdk;
|
2005-04-29 14:23:15 +01:00
|
|
|
};
|
|
|
|
|
2007-12-19 00:17:40 +00:00
|
|
|
# don't have time for the source build right now
|
|
|
|
# maven2
|
|
|
|
mvn_bin = import ../misc/maven/maven-2.nix {
|
2008-01-15 00:55:21 +00:00
|
|
|
inherit fetchurl stdenv;
|
2007-12-19 00:17:40 +00:00
|
|
|
};
|
|
|
|
|
2007-03-29 10:24:14 +01:00
|
|
|
nix = import ../tools/package-management/nix {
|
2008-01-01 11:30:41 +00:00
|
|
|
inherit fetchurl stdenv perl curl bzip2 openssl;
|
2006-11-14 15:55:57 +00:00
|
|
|
aterm = aterm242fixes;
|
2008-01-01 11:30:41 +00:00
|
|
|
db4 = db45;
|
2006-05-01 20:16:41 +01:00
|
|
|
};
|
|
|
|
|
2006-11-17 12:49:46 +00:00
|
|
|
# The bleeding edge.
|
2007-03-29 10:24:14 +01:00
|
|
|
nixUnstable = import ../tools/package-management/nix/unstable.nix {
|
2007-03-01 15:44:23 +00:00
|
|
|
inherit fetchurl stdenv perl curl bzip2 openssl;
|
2006-11-17 12:49:46 +00:00
|
|
|
aterm = aterm242fixes;
|
|
|
|
db4 = db45;
|
2008-09-24 09:50:05 +01:00
|
|
|
supportOldDBs = getPkgConfig "nix" "OldDBSupport" true;
|
|
|
|
storeDir = getPkgConfig "nix" "storeDir" "/nix/store";
|
2008-09-24 18:38:40 +01:00
|
|
|
stateDir = getPkgConfig "nix" "stateDir" "/nix/var";
|
2006-11-17 12:49:46 +00:00
|
|
|
};
|
2006-10-18 15:04:55 +01:00
|
|
|
|
2008-05-06 08:03:41 +01:00
|
|
|
nixCustomFun = src: preConfigure: enableScripts: configureFlags:
|
2008-02-21 13:44:06 +00:00
|
|
|
import ../tools/package-management/nix/custom.nix {
|
2008-06-18 23:48:34 +01:00
|
|
|
inherit fetchurl stdenv perl curl bzip2 openssl src preConfigure automake
|
2008-08-25 14:25:07 +01:00
|
|
|
autoconf libtool configureFlags enableScripts lib bison;
|
2008-02-21 13:44:06 +00:00
|
|
|
flex = flex2533;
|
|
|
|
aterm = aterm242fixes;
|
|
|
|
db4 = db45;
|
|
|
|
inherit docbook5_xsl libxslt docbook5 docbook_xml_dtd_43 w3m;
|
|
|
|
};
|
2007-11-13 15:52:16 +00:00
|
|
|
|
2008-07-06 16:44:46 +01:00
|
|
|
disnix = import ../tools/package-management/disnix {
|
|
|
|
inherit stdenv fetchsvn openssl dbus autoconf automake pkgconfig dbus_glib;
|
|
|
|
};
|
2008-07-08 00:11:13 +01:00
|
|
|
|
2008-07-06 22:38:12 +01:00
|
|
|
DisnixService = import ../tools/package-management/disnix/DisnixService {
|
2008-07-30 14:37:44 +01:00
|
|
|
inherit stdenv fetchsvn apacheAnt jdk axis2 shebangfix;
|
2008-07-06 22:38:12 +01:00
|
|
|
};
|
2008-07-08 00:11:13 +01:00
|
|
|
|
2007-09-01 19:15:19 +01:00
|
|
|
ntfs3g = import ../misc/ntfs-3g {
|
2008-07-24 14:11:02 +01:00
|
|
|
inherit fetchurl stdenv utillinux;
|
2007-09-01 19:15:19 +01:00
|
|
|
};
|
|
|
|
|
2007-11-21 14:10:21 +00:00
|
|
|
ntfsprogs = import ../misc/ntfsprogs {
|
2007-11-20 22:29:24 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2008-01-29 01:24:54 +00:00
|
|
|
pgadmin = import ../applications/misc/pgadmin {
|
|
|
|
inherit fetchurl stdenv postgresql libxml2 libxslt openssl;
|
|
|
|
wxGTK = wxGTK28;
|
|
|
|
};
|
|
|
|
|
2008-10-08 15:03:44 +01:00
|
|
|
pgf = pgf2;
|
|
|
|
|
|
|
|
# Keep the old PGF since some documents don't render properly with
|
|
|
|
# the new one.
|
|
|
|
pgf1 = import ../misc/tex/pgf/1.x.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
pgf2 = import ../misc/tex/pgf/2.x.nix {
|
2007-03-10 23:51:59 +00:00
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
polytable = import ../misc/tex/polytable {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv tetex lazylist;
|
2005-10-21 14:06:43 +01:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
psi = builderDefsPackage
|
2008-06-18 23:48:34 +01:00
|
|
|
(selectVersion ../applications/networking/instant-messengers/psi "0.11")
|
2008-03-20 15:40:26 +00:00
|
|
|
{
|
|
|
|
inherit builderDefs zlib aspell sox openssl;
|
|
|
|
inherit (xlibs) xproto libX11 libSM libICE;
|
|
|
|
qt = qt4;
|
|
|
|
};
|
2008-03-20 09:52:40 +00:00
|
|
|
|
2007-05-28 15:10:46 +01:00
|
|
|
putty = import ../applications/networking/remote/putty {
|
|
|
|
inherit stdenv fetchurl ncurses;
|
|
|
|
inherit (gtkLibs1x) gtk;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
rssglx = import ../misc/screensavers/rss-glx {
|
2008-06-14 21:55:48 +01:00
|
|
|
inherit fetchurl stdenv x11 mesa pkgconfig imagemagick libtiff bzip2;
|
2006-03-02 18:17:45 +00:00
|
|
|
};
|
|
|
|
|
2008-02-15 10:40:20 +00:00
|
|
|
xlockmore = import ../misc/screensavers/xlockmore {
|
|
|
|
inherit fetchurl stdenv pam x11 freetype;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
saneBackends = import ../misc/sane-backends {
|
2007-08-08 21:33:36 +01:00
|
|
|
inherit fetchurl stdenv libusb;
|
2008-03-17 09:41:28 +00:00
|
|
|
gt68xxFirmware = getConfig ["sane" "gt68xxFirmware"] null;
|
2007-08-08 21:33:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
saneFrontends = import ../misc/sane-front {
|
2008-03-17 09:41:28 +00:00
|
|
|
inherit fetchurl stdenv pkgconfig libusb saneBackends;
|
2007-08-08 21:33:36 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libX11;
|
2005-11-03 20:00:43 +00:00
|
|
|
};
|
|
|
|
|
2008-06-15 12:54:22 +01:00
|
|
|
sourceAndTags = import ../misc/source-and-tags {
|
2008-08-21 12:07:44 +01:00
|
|
|
inherit pkgs stdenv unzip lib ctags;
|
|
|
|
inherit (ghc68executables) hasktags;
|
2008-06-15 12:54:22 +01:00
|
|
|
};
|
|
|
|
|
2007-06-20 11:30:03 +01:00
|
|
|
synaptics = import ../misc/synaptics {
|
|
|
|
inherit fetchurl stdenv pkgconfig;
|
2007-11-09 13:54:02 +00:00
|
|
|
inherit (xlibs) libX11 libXi libXext pixman xf86inputevdev;
|
2007-06-20 11:30:03 +01:00
|
|
|
inherit (xorg) xorgserver;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
tetex = import ../misc/tex/tetex {
|
2006-09-15 16:28:53 +01:00
|
|
|
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
|
2006-01-31 15:18:27 +00:00
|
|
|
};
|
|
|
|
|
2008-03-17 09:41:28 +00:00
|
|
|
/*
|
|
|
|
tetexX11 = import ../misc/tex/tetex {
|
2008-02-03 08:53:47 +00:00
|
|
|
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
|
|
|
|
inherit (xlibs) libX11 libXext libXmu libXaw libXt libXpm;
|
|
|
|
inherit freetype t1lib;
|
|
|
|
builderX11 = true;
|
2008-03-17 09:41:28 +00:00
|
|
|
};
|
|
|
|
*/
|
2008-02-03 08:53:47 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
texFunctions = import ../misc/tex/nix {
|
2008-07-03 15:27:19 +01:00
|
|
|
inherit stdenv perl tetex graphviz ghostscript makeFontsConf;
|
2006-01-28 02:10:26 +00:00
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLive = builderDefsPackage (import ../misc/tex/texlive) {
|
2008-03-20 09:52:40 +00:00
|
|
|
inherit builderDefs zlib bzip2 ncurses libpng ed
|
2008-07-08 19:23:15 +01:00
|
|
|
gd t1lib freetype icu perl ruby expat curl
|
2008-08-25 15:52:53 +01:00
|
|
|
libjpeg bison;
|
2008-03-20 09:52:40 +00:00
|
|
|
inherit (xlibs) libXaw libX11 xproto libXt libXpm
|
2008-08-25 15:52:53 +01:00
|
|
|
libXmu libXext xextproto libSM libICE;
|
2008-03-20 09:52:40 +00:00
|
|
|
flex = flex2535;
|
|
|
|
ghostscript = ghostscriptX;
|
|
|
|
};
|
|
|
|
|
2008-06-18 23:48:34 +01:00
|
|
|
/* Look in configurations/misc/raskin.nix for usage example (around revisions
|
|
|
|
where TeXLive was added)
|
|
|
|
|
2008-03-22 13:04:04 +00:00
|
|
|
(texLiveAggregationFun {
|
2008-06-18 23:48:34 +01:00
|
|
|
paths = [texLive texLiveExtra texLiveCMSuper
|
2008-03-22 13:04:04 +00:00
|
|
|
texLiveBeamer
|
|
|
|
];
|
2008-08-14 23:04:30 +01:00
|
|
|
})
|
2008-05-16 05:52:47 +01:00
|
|
|
|
|
|
|
You need to use texLiveAggregationFun to regenerate, say, ls-R (TeX-related file list)
|
|
|
|
Just installing a few packages doesn't work.
|
2008-03-22 13:04:04 +00:00
|
|
|
*/
|
2008-08-25 14:25:07 +01:00
|
|
|
texLiveAggregationFun =
|
2008-08-14 23:04:30 +01:00
|
|
|
(builderDefsPackage (import ../misc/tex/texlive/aggregate.nix));
|
2008-03-22 13:04:04 +00:00
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLiveContext = builderDefsPackage (import ../misc/tex/texlive/context.nix) {
|
2008-04-28 11:10:44 +01:00
|
|
|
inherit texLive;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLiveExtra = builderDefsPackage (import ../misc/tex/texlive/extra.nix) {
|
2008-03-22 13:04:04 +00:00
|
|
|
inherit texLive;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLiveCMSuper = builderDefsPackage (import ../misc/tex/texlive/cm-super.nix) {
|
2008-03-22 13:04:04 +00:00
|
|
|
inherit texLive;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLiveLatexXColor = builderDefsPackage (import ../misc/tex/texlive/xcolor.nix) {
|
2008-03-22 13:04:04 +00:00
|
|
|
inherit texLive;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLivePGF = builderDefsPackage (import ../misc/tex/texlive/pgf.nix) {
|
2008-03-22 13:04:04 +00:00
|
|
|
inherit texLiveLatexXColor texLive;
|
|
|
|
};
|
|
|
|
|
2008-08-14 23:04:30 +01:00
|
|
|
texLiveBeamer = builderDefsPackage (import ../misc/tex/texlive/beamer.nix) {
|
2008-03-22 13:04:04 +00:00
|
|
|
inherit texLiveLatexXColor texLivePGF texLive;
|
|
|
|
};
|
2008-03-20 09:52:40 +00:00
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
toolbuslib = import ../development/libraries/toolbuslib {
|
2006-02-02 16:31:23 +00:00
|
|
|
inherit stdenv fetchurl aterm;
|
|
|
|
};
|
|
|
|
|
2006-10-18 11:32:45 +01:00
|
|
|
trac = import ../misc/trac {
|
2008-06-19 16:46:43 +01:00
|
|
|
inherit stdenv fetchurl python clearsilver makeWrapper
|
|
|
|
sqlite subversion pysqlite;
|
2008-03-22 20:56:23 +00:00
|
|
|
};
|
2008-06-18 23:48:34 +01:00
|
|
|
|
2007-08-19 00:58:30 +01:00
|
|
|
wine = import ../misc/emulators/wine {
|
2007-11-19 17:39:19 +00:00
|
|
|
inherit fetchurl stdenv flex bison mesa ncurses
|
2007-08-21 13:31:33 +01:00
|
|
|
libpng libjpeg alsaLib lcms xlibs freetype
|
2008-02-08 13:12:13 +00:00
|
|
|
fontconfig fontforge libxml2 libxslt openssl;
|
2007-08-19 00:58:30 +01:00
|
|
|
};
|
2007-06-25 22:46:18 +01:00
|
|
|
|
2008-03-29 00:49:26 +00:00
|
|
|
xosd = import ../misc/xosd {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
inherit (xlibs) libX11 libXext libXt xextproto xproto;
|
|
|
|
};
|
|
|
|
|
2007-08-08 21:33:36 +01:00
|
|
|
xsane = import ../misc/xsane {
|
|
|
|
inherit fetchurl stdenv pkgconfig libusb
|
2008-03-17 09:41:28 +00:00
|
|
|
saneBackends saneFrontends;
|
2007-08-08 21:33:36 +01:00
|
|
|
inherit (gtkLibs) gtk;
|
|
|
|
inherit (xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
2008-10-09 23:57:20 +01:00
|
|
|
myEnvFun = import ../misc/my-env {
|
|
|
|
inherit substituteAll pkgs;
|
|
|
|
inherit (stdenv) mkDerivation;
|
|
|
|
};
|
2008-06-15 12:54:22 +01:00
|
|
|
|
2008-03-17 17:29:07 +00:00
|
|
|
}; in pkgs
|