Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

39 lines
905 B
Nix

{
lib,
stdenv,
curl,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "stdman";
version = "2024.07.05";
src = fetchFromGitHub {
owner = "jeaye";
repo = "stdman";
rev = finalAttrs.version;
sha256 = "sha256-/yJqKwJHonnBkP6/yQQJT3yPyYO6/nFAf4XFrgl3L0A=";
};
outputDevdoc = "out";
preConfigure = "
patchShebangs ./do_install
";
buildInputs = [ curl ];
meta = {
description = "Formatted C++17 stdlib man pages (cppreference)";
longDescription = "stdman is a tool that parses archived HTML
files from cppreference and generates groff-formatted manual
pages for Unix-based systems. The goal is to provide excellent
formatting for easy readability.";
homepage = "https://github.com/jeaye/stdman";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.twey ];
};
})