nixpkgs/pkgs/development/libraries/libressl/2.4.nix

23 lines
573 B
Nix
Raw Normal View History

2016-06-26 22:30:24 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.4.2";
2016-06-26 22:30:24 +00:00
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "1qyrcyzrrn6r9cqvm66ib72qyr65q4hrdyiq1vb24a6nwmwdg1sz";
2016-06-26 22:30:24 +00:00
};
enableParallelBuilding = true;
outputs = [ "bin" "dev" "out" "man" ];
2016-06-26 22:30:24 +00:00
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}