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

23 lines
573 B
Nix
Raw Normal View History

2016-06-26 23:30:24 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
2016-11-09 19:02:45 +00:00
version = "2.4.4";
2016-06-26 23:30:24 +01:00
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2016-11-09 19:02:45 +00:00
sha256 = "1ldzxqc0bds9mwnirrckhx42y3k0v5cx997nnbfa2gkk6ilszkvg";
2016-06-26 23:30:24 +01:00
};
enableParallelBuilding = true;
outputs = [ "bin" "dev" "out" "man" ];
2016-06-26 23:30:24 +01:00
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}