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

23 lines
573 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
2016-03-29 04:53:53 +02:00
version = "2.3.3";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2016-03-29 04:53:53 +02:00
sha256 = "1a8anm8nsfyxds03csk738m2cmzjbsb867my1rz5ij3w31k32wvn";
};
enableParallelBuilding = true;
2016-04-14 23:45:43 +02:00
outputs = [ "dev" "out" "man" "bin" ];
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 ];
};
}