summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl/default.nix
blob: 4e683584587b2f538478f3861b6476e2d88e8d58 (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.8i";
  
  src = fetchurl {
    url = http://www.openssl.org/source/openssl-0.9.8i.tar.gz;
    sha1 = "b2e029cfb68bf32eae997d60317a40945db5a65f";
  };
  
  buildInputs = [perl];

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

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