2004-03-29 19:23:01 +02:00
|
|
|
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
|
2005-07-13 14:35:26 +02:00
|
|
|
name = "openssl-0.9.7g";
|
2003-11-05 13:17:48 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-10-11 15:33:11 +02:00
|
|
|
url = http://www.openssl.org/source/openssl-0.9.7h.tar.gz;
|
|
|
|
sha1 = "9fe535fce89af967b29c4727dedd25f2b4cc2f0d";
|
2004-03-27 16:49:20 +01:00
|
|
|
};
|
2005-07-13 13:22:38 +02:00
|
|
|
buildInputs = [perl];
|
2005-10-12 09:40:27 +02:00
|
|
|
patches = [./darwin-makefile.patch];
|
2003-11-05 13:17:48 +01:00
|
|
|
}
|