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

23 lines
573 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.2.7";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "1kckv36dgvvjq1ap6ahxgma4hw57zp61xsp5vjvyza5vhfrnhb3y";
};
enableParallelBuilding = true;
2016-04-15 15:43:04 +01:00
outputs = [ "dev" "out" "man" "bin" ];
2015-03-12 18:37:27 +00:00
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
2015-03-12 18:37:27 +00:00
platforms = platforms.all;
2015-12-27 22:11:59 +00:00
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}