94fe7734fa
* GCC 3.4.5. * Updated several other stdenv packages. * Modified the builders of several packages to use the generic builder. svn path=/nixpkgs/trunk/; revision=4336
11 lines
300 B
Nix
11 lines
300 B
Nix
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
|
|
name = "openssl-0.9.7i";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.openssl.org/source/openssl-0.9.7i.tar.gz;
|
|
sha1 = "f69d82b206ff8bff9d0e721f97380b9e";
|
|
};
|
|
buildInputs = [perl];
|
|
patches = [./darwin-makefile.patch];
|
|
}
|