2006-09-11 10:45:01 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-02-05 12:41:49 +01:00
|
|
|
name = "apr-1.2.12";
|
|
|
|
|
2006-09-11 10:45:01 +02:00
|
|
|
src = fetchurl {
|
2008-02-05 12:41:49 +01:00
|
|
|
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";
|
2006-09-11 10:45:01 +02:00
|
|
|
};
|
|
|
|
}
|