1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libressl/2.3.nix

23 lines
573 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
2016-11-09 19:02:09 +00:00
version = "2.3.9";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2016-11-09 19:02:09 +00:00
sha256 = "1z4nh45zdh1gllhgbvlgd2vk4srhbaswyn82l3dzcfmi9rk17zx6";
};
enableParallelBuilding = true;
outputs = [ "bin" "dev" "out" "man" ];
2016-04-14 22:45:43 +01:00
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;
2016-01-29 03:41:14 +00:00
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}