nixpkgs/pkgs/development/libraries/libressl/2.2.nix
zimbatm 144eed8bad libressl: split branches and add 2.3.1 (close #11196)
2.3.x introduces some backward-incompatible changes but is still nice to have.

Both 2.3.1 and 2.2.4 are available and 2.2.4 is still the default for now.
2015-11-24 18:10:53 +01:00

21 lines
524 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.2.4";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "0zlsxw366n438dc14zqnim6fc5vh1574jj95hv1sym46prcrhh3b";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz ];
};
}