* OpenSSL 0.9.8d.

svn path=/nixpkgs/trunk/; revision=6629
This commit is contained in:
Eelco Dolstra 2006-09-29 21:17:10 +00:00
parent 8b7597ea85
commit 4e2994a237
3 changed files with 9 additions and 20 deletions

View File

@ -1 +1,9 @@
import ./openssl-0.9.8b.nix
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
name = "openssl-0.9.8d";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8d.tar.gz;
sha1 = "4136fba00303a3d319d2052bfa8e1f09a2e12fc2";
};
buildInputs = [perl];
}

View File

@ -1,10 +0,0 @@
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
name = "openssl-0.9.7i";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/openssl-0.9.7i.tar.gz;
sha1 = "4c23925744d43272fa19615454da44e01465eb06";
};
buildInputs = [perl];
# patches = [./darwin-makefile.patch];
}

View File

@ -1,9 +0,0 @@
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
name = "openssl-0.9.8b";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8b.tar.gz;
sha1 = "99565db630a044fa484d4f91006a31908f262246";
};
buildInputs = [perl];
}