1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/openssl/default.nix
Eelco Dolstra 94fe7734fa * Glibc 2.3.6.
* 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
2005-12-06 00:12:45 +00:00

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