2007-11-11 21:35:21 +01:00
|
|
|
args: with args; stdenv.mkDerivation {
|
2007-10-22 22:14:22 +02:00
|
|
|
name = "openssl-0.9.8g";
|
2006-09-29 23:17:10 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-10-22 22:14:22 +02:00
|
|
|
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8g.tar.gz;
|
|
|
|
sha256 = "1w0wj3pgg9ga0hay3jdxs9sl17bfw307b6qvkxn735fy8ml8h9hf";
|
2006-09-29 23:17:10 +02:00
|
|
|
};
|
|
|
|
buildInputs = [perl];
|
2007-11-11 21:35:21 +01:00
|
|
|
propagatedBuildInputs = [gmp];
|
2006-09-29 23:17:10 +02:00
|
|
|
}
|