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}";
2016-09-28 06:12:35 -07:00
version = "2.3.8";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2016-09-28 06:12:35 -07:00
sha256 = "1hjglpaw1bparlzyjczn0rak32n8hl53317izq81683x5kns8smf";
};
enableParallelBuilding = true;
outputs = [ "bin" "dev" "out" "man" ];
2016-04-14 14:45:43 -07:00
2015-03-12 11:37:27 -07:00
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
2015-03-12 11:37:27 -07:00
platforms = platforms.all;
2016-01-28 19:41:14 -08:00
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}