libressl_2_4: init at 2.4.1

This commit is contained in:
Franz Pletz
2016-06-27 00:30:24 +02:00
parent 4157f53bf1
commit 8ace098f43
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.4.1";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "0xq4x1s91aqzrf8j9d4kf4j093cz2ayg0xrybsl4gkb966qj468j";
};
enableParallelBuilding = true;
outputs = [ "dev" "out" "man" "bin" ];
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}