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

21 lines
517 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.1.5";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "1fy3x5idx5mnncbzhsw1ahwnh7ram4d05ksz0ipf5x6p7y8pj8x8";
};
enableParallelBuilding = true;
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;
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}