3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libressl/2.2.nix

21 lines
531 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
2015-12-27 22:11:59 +00:00
version = "2.2.5";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
2015-12-27 22:11:59 +00:00
sha256 = "0jwidi7fafcdh5qml72dx0ad0kfsk94qxzm29i7wd3cx8v8dxjp3";
};
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;
2015-12-27 22:11:59 +00:00
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
}