libressl_2_4: init at 2.4.1
This commit is contained in:
parent
4157f53bf1
commit
8ace098f43
22
pkgs/development/libraries/libressl/2.4.nix
Normal file
22
pkgs/development/libraries/libressl/2.4.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -8716,6 +8716,9 @@ in
|
|||||||
libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix {
|
libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix {
|
||||||
fetchurl = fetchurlBoot;
|
fetchurl = fetchurlBoot;
|
||||||
};
|
};
|
||||||
|
libressl_2_4 = callPackage ../development/libraries/libressl/2.4.nix {
|
||||||
|
fetchurl = fetchurlBoot;
|
||||||
|
};
|
||||||
|
|
||||||
boringssl = callPackage ../development/libraries/boringssl { };
|
boringssl = callPackage ../development/libraries/boringssl { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user