libressl_2_5: init at 2.5.0
This commit is contained in:
parent
f749a16662
commit
8916ba141b
22
pkgs/development/libraries/libressl/2.5.nix
Normal file
22
pkgs/development/libraries/libressl/2.5.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libressl-${version}";
|
||||||
|
version = "2.5.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
||||||
|
sha256 = "1bkfvapi4z826slycmicvs7hwgk4l82gd8w6nqvznldbammvyll6";
|
||||||
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
outputs = [ "bin" "dev" "out" "man" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Free TLS/SSL implementation";
|
||||||
|
homepage = "http://www.libressl.org";
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
|
||||||
|
};
|
||||||
|
}
|
@ -8530,13 +8530,17 @@ in
|
|||||||
|
|
||||||
openslp = callPackage ../development/libraries/openslp {};
|
openslp = callPackage ../development/libraries/openslp {};
|
||||||
|
|
||||||
libressl = libressl_2_4;
|
libressl = libressl_2_5;
|
||||||
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 {
|
libressl_2_4 = callPackage ../development/libraries/libressl/2.4.nix {
|
||||||
fetchurl = fetchurlBoot;
|
fetchurl = fetchurlBoot;
|
||||||
};
|
};
|
||||||
|
libressl_2_5 = callPackage ../development/libraries/libressl/2.5.nix {
|
||||||
|
fetchurl = fetchurlBoot;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
boringssl = callPackage ../development/libraries/boringssl { };
|
boringssl = callPackage ../development/libraries/boringssl { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user