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

21 lines
517 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
2015-08-19 18:42:48 +01:00
version = "2.2.2";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2015-08-19 18:42:48 +01:00
sha256 = "0551i4jbs81ark3jy6nycqpyqn7rg30nvcdjvdg58s6l6fgv1570";
};
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 ];
};
}