Files
nixpkgs/pkgs/by-name/li/libtlsrpt/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

38 lines
799 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libtlsrpt";
version = "0.5.0";
outputs = [
"out"
"dev"
"man"
];
src = fetchFromGitHub {
owner = "sys4";
repo = "libtlsrpt";
tag = "v${finalAttrs.version}";
hash = "sha256-h7bWxxllKFj8+/FfC4yHSmz+Qij1BcgV4OCQZr1OkA8=";
};
nativeBuildInputs = [ autoreconfHook ];
separateDebugInfo = true;
meta = {
description = "Low-level C Library to implement TLSRPT into a MTA";
homepage = "https://github.com/sys4/libtlsrpt";
changelog = "https://github.com/sys4/libtlsrpt/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ hexa ];
platforms = lib.platforms.all;
};
})