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

23 lines
573 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.3.7";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "0q08yysyalz0fvzajm3x4wg4k6gn4hhd04qsfv27r1p4kj2mv7zm";
};
enableParallelBuilding = true;
outputs = [ "bin" "dev" "out" "man" ];
2016-04-14 23:45:43 +02:00
2015-03-12 19:37:27 +01:00
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
2015-03-12 19:37:27 +01:00
platforms = platforms.all;
2016-01-29 04:41:14 +01:00
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}