1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/openssl/default.nix

22 lines
459 B
Nix
Raw Normal View History

{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";
};
}