2004-03-29 19:23:01 +02:00
|
|
|
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
|
2005-12-06 01:12:45 +01:00
|
|
|
name = "openssl-0.9.7i";
|
2003-11-05 13:17:48 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/openssl-0.9.7i.tar.gz;
|
2005-12-06 01:26:56 +01:00
|
|
|
sha1 = "4c23925744d43272fa19615454da44e01465eb06";
|
2004-03-27 16:49:20 +01:00
|
|
|
};
|
2005-07-13 13:22:38 +02:00
|
|
|
buildInputs = [perl];
|
2005-12-06 11:22:50 +01:00
|
|
|
# patches = [./darwin-makefile.patch];
|
2003-11-05 13:17:48 +01:00
|
|
|
}
|