summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl/default.fix
blob: 38bf22cb0bfd3f607b04caa9d1468dbd7da079c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, perl}: derivation {
  name = "openssl-0.9.7c";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
      url = http://www.openssl.org/source/openssl-0.9.7c.tar.gz;
      md5 = "c54fb36218adaaaba01ef733cd88c8ec";
    };
  stdenv = stdenv;
  perl = perl;
}