nixpkgs/pkgs/development/libraries/apr/default.nix
Yury G. Kudryashov 156b7f93ef * Updated Apache-related packages.
svn path=/nixpkgs/branches/stdenv-updates/; revision=10589
2008-02-10 17:39:07 +00:00

16 lines
342 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "apr-1.2.12";
src = fetchurl {
url = http://archive.apache.org/dist/apr/apr-1.2.12.tar.bz2;
sha256 = "0d11wa2hlhb5lnny5rcazca056b35kgccx94cd38bazw1d6b68nv";
};
meta = {
homepage = http://apr.apache.org/;
description = "The Apache Portable Runtime library";
};
}