summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl/default.nix
blob: add3647071e103d6c786a8ecda590463a4e17f1c (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
  name = "openssl-0.9.8d";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8d.tar.gz;
    sha1 = "4136fba00303a3d319d2052bfa8e1f09a2e12fc2";
  };
  buildInputs = [perl];
}