* Added APR.

svn path=/nixpkgs/trunk/; revision=6484
This commit is contained in:
Eelco Dolstra 2006-09-11 08:45:01 +00:00
parent 6412133453
commit f69ac73f3c
2 changed files with 17 additions and 4 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "apr-1.2.7";
src = fetchurl {
url = http://archive.apache.org/dist/apr/apr-1.2.7.tar.bz2;
md5 = "e77887dbafc515c63feac84686bcb3bc";
};
}

View File

@ -911,10 +911,10 @@ rec {
};
ghcWrapper = assert uulib.ghc == ghc;
(import ../development/compilers/ghc-wrapper) {
inherit stdenv ghc;
libraries = [ uulib ];
};
(import ../development/compilers/ghc-wrapper) {
inherit stdenv ghc;
libraries = [ uulib ];
};
uuagc = (import ../development/tools/haskell/uuagc) {
inherit fetchurl stdenv ghc uulib;
@ -1529,6 +1529,10 @@ rec {
inherit fetchurl stdenv python;
};
apr = import ../development/libraries/apr {
inherit fetchurl stdenv;
};
### DEVELOPMENT / LIBRARIES / JAVA
saxon = (import ../development/libraries/java/saxon) {