1 { lib, stdenv, curl, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
5 version = "2024.07.05";
7 src = fetchFromGitHub {
11 sha256 = "sha256-/yJqKwJHonnBkP6/yQQJT3yPyYO6/nFAf4XFrgl3L0A=";
17 patchShebangs ./do_install
20 buildInputs = [ curl ];
23 description = "Formatted C++17 stdlib man pages (cppreference)";
24 longDescription = "stdman is a tool that parses archived HTML
25 files from cppreference and generates groff-formatted manual
26 pages for Unix-based systems. The goal is to provide excellent
27 formatting for easy readability.";
28 homepage = "https://github.com/jeaye/stdman";
29 license = licenses.mit;
30 platforms = platforms.unix;
31 maintainers = [ maintainers.twey ];