mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
* 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;
|
||||
(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) {
|
||||
|
Loading…
Reference in New Issue
Block a user