mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
add openssl 0.9.8b
svn path=/nixpkgs/trunk/; revision=5592
This commit is contained in:
parent
d511baa7d9
commit
228fd19ffb
1 changed files with 10 additions and 0 deletions
10
pkgs/development/libraries/openssl/openssl-0.9.8b.nix
Normal file
10
pkgs/development/libraries/openssl/openssl-0.9.8b.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{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];
|
||||
# patches = [./darwin-makefile.patch];
|
||||
}
|
Loading…
Reference in a new issue