about summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl/default.nix
blob: 06c806f1c5bf58e642b5ff02e0d4f5b67f7bea3a (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 = http://nix.cs.uu.nl/dist/tarballs/openssl-0.9.8d.tar.gz;
    sha1 = "4136fba00303a3d319d2052bfa8e1f09a2e12fc2";
  };
  buildInputs = [perl];
}