summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl/default.nix
blob: 5393b228432b1060ddd5f676c1647d876f9b2fc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, perl}:

stdenv.mkDerivation {
  name = "openssl-0.9.8j";
  
  src = fetchurl {
    url = http://www.openssl.org/source/openssl-0.9.8j.tar.gz;
    sha1 = "f70f7127a26e951e8a0d854c0c9e6b4c24df78e4";
  };
  
  buildInputs = [perl];

  configureScript = "./config";
  
  configureFlags = "shared";

  meta = {
    homepage = http://www.openssl.org/;
    description = "A cryptographic library that implements the SSL and TLS protocols";
  };
}