nixpkgs/pkgs/development/libraries/libressl/default.nix
William A. Kennington III 9d921766c5 libressl: 2.2.2 -> 2.2.3
2015-09-17 14:33:43 -07:00

21 lines
517 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.2.3";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "10nq2rpyzgl7xhdip9mmn7hzb6hcjffbjcb04jchxmlivwdc5k51";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}