about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/documentation/stdman/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/data/documentation/stdman/default.nix')
-rw-r--r--nixpkgs/pkgs/data/documentation/stdman/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/data/documentation/stdman/default.nix b/nixpkgs/pkgs/data/documentation/stdman/default.nix
new file mode 100644
index 000000000000..adb735c38a1e
--- /dev/null
+++ b/nixpkgs/pkgs/data/documentation/stdman/default.nix
@@ -0,0 +1,33 @@
+{ lib, stdenv, curl, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "stdman";
+  version = "2022.07.30";
+
+  src = fetchFromGitHub {
+    owner = "jeaye";
+    repo = "stdman";
+    rev = version;
+    sha256 = "sha256-ABogxVQS6p3wUV8GuB2tp7vMxe63t51dNoclEnYpa/0=";
+  };
+
+  outputDevdoc = "out";
+
+  preConfigure = "
+    patchShebangs ./do_install
+  ";
+
+  buildInputs = [ curl ];
+
+  meta = with lib; {
+    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 = licenses.mit;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.twey ];
+  };
+}