forked from mirrors/nixpkgs
* Added APR.
svn path=/nixpkgs/trunk/; revision=6484
This commit is contained in:
parent
6412133453
commit
f69ac73f3c
9
pkgs/development/libraries/apr/default.nix
Normal file
9
pkgs/development/libraries/apr/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -911,10 +911,10 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
ghcWrapper = assert uulib.ghc == ghc;
|
ghcWrapper = assert uulib.ghc == ghc;
|
||||||
(import ../development/compilers/ghc-wrapper) {
|
(import ../development/compilers/ghc-wrapper) {
|
||||||
inherit stdenv ghc;
|
inherit stdenv ghc;
|
||||||
libraries = [ uulib ];
|
libraries = [ uulib ];
|
||||||
};
|
};
|
||||||
|
|
||||||
uuagc = (import ../development/tools/haskell/uuagc) {
|
uuagc = (import ../development/tools/haskell/uuagc) {
|
||||||
inherit fetchurl stdenv ghc uulib;
|
inherit fetchurl stdenv ghc uulib;
|
||||||
|
@ -1529,6 +1529,10 @@ rec {
|
||||||
inherit fetchurl stdenv python;
|
inherit fetchurl stdenv python;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
apr = import ../development/libraries/apr {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
### DEVELOPMENT / LIBRARIES / JAVA
|
### DEVELOPMENT / LIBRARIES / JAVA
|
||||||
|
|
||||||
saxon = (import ../development/libraries/java/saxon) {
|
saxon = (import ../development/libraries/java/saxon) {
|
||||||
|
|
Loading…
Reference in a new issue