nixpkgs/pkgs/development/libraries/openssl/openssl-0.9.7i.nix
Martin Bravenboer 59868ad0bc Use openssl 0.9.8b by default
svn path=/nixpkgs/trunk/; revision=5598
2006-07-05 16:46:51 +00:00

11 lines
313 B
Nix

{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];
}