summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl-0.9.8/default.nix
blob: 44778a98128dcaf5597694837536513999c41c0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
  name = "openssl-0.9.8";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.openssl.org/source/openssl-0.9.8.tar.gz;
    md5 = "9da21071596a124acde6080552deac16";
  };
  buildInputs = [perl];

  # Quick fix for a Makefile bug in openssl-0.9.8 (`make install'
  # tries to copy .so files, instead of .dylib files).
  patches = if stdenv.system == "powerpc-darwin" then [./dylib.patch] else [];
}