1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00: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-03-29 03:53:53 +01:00
version = "2.3.3";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2016-03-29 03:53:53 +01:00
sha256 = "1a8anm8nsfyxds03csk738m2cmzjbsb867my1rz5ij3w31k32wvn";
};
enableParallelBuilding = true;
2016-04-14 22:45:43 +01:00
outputs = [ "dev" "out" "man" "bin" ];
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 ];
};
}