3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
11 lines
313 B
Nix
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];
|
|
}
|