about summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl/default.nix
blob: e1dbc274aeda74543d1e1e4f88c33728ee21ebdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
args: with args; stdenv.mkDerivation {
  name = "openssl-0.9.8g";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8g.tar.gz;
    sha256 = "1w0wj3pgg9ga0hay3jdxs9sl17bfw307b6qvkxn735fy8ml8h9hf";
  };
  buildInputs = [perl];
  propagatedBuildInputs = [gmp];
}