rfc-reader: init at 0.11.2 (#507630)

This commit is contained in:
Sandro
2026-04-15 12:19:06 +00:00
committed by GitHub
+50
View File
@@ -0,0 +1,50 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
nix-update-script,
testers,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rfc-reader";
version = "0.11.2";
src = fetchFromGitHub {
owner = "ozan2003";
repo = "rfc_reader";
tag = "v${finalAttrs.version}";
hash = "sha256-Hm8BVIMxRlyiVptvuS8vk2eO3hHboj5CRefWcMEhzvs=";
};
cargoHash = "sha256-ro0BVMbShxo/EsPBOCBOgYDsOkDnxpyTZlk2eAJ2IWA=";
__structuredAttrs = true;
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
passthru.updateScript = nix-update-script { };
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
# The version command triggers logging unconditionally, have to create a temp directory
command = "HOME=$(mktemp -d) rfc_reader --version";
};
meta = {
description = "RFC viewer with TUI";
homepage = "https://github.com/ozan2003/rfc_reader";
changelog = "https://github.com/ozan2003/rfc_reader/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ frantathefranta ];
mainProgram = "rfc_reader";
};
})