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