libtlsrpt: init at 0.5.0

A low-level C Library to implement TLSRPT into a MTA.

+37
+37
pkgs/by-name/li/libtlsrpt/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + autoreconfHook, 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "libtlsrpt"; 10 + version = "0.5.0"; 11 + 12 + outputs = [ 13 + "out" 14 + "dev" 15 + "man" 16 + ]; 17 + 18 + src = fetchFromGitHub { 19 + owner = "sys4"; 20 + repo = "libtlsrpt"; 21 + tag = "v${finalAttrs.version}"; 22 + hash = "sha256-h7bWxxllKFj8+/FfC4yHSmz+Qij1BcgV4OCQZr1OkA8="; 23 + }; 24 + 25 + nativeBuildInputs = [ autoreconfHook ]; 26 + 27 + separateDebugInfo = true; 28 + 29 + meta = { 30 + description = "Low-level C Library to implement TLSRPT into a MTA"; 31 + homepage = "https://github.com/sys4/libtlsrpt"; 32 + changelog = "https://github.com/sys4/libtlsrpt/blob/${finalAttrs.src.tag}/CHANGELOG.md"; 33 + license = lib.licenses.lgpl3Plus; 34 + maintainers = with lib.maintainers; [ hexa ]; 35 + platforms = lib.platforms.all; 36 + }; 37 + })