summary refs log tree commit diff
path: root/pkgs/data/documentation/stdman/default.nix
blob: 9308c538d35560b487c76097fae8e0867caef15f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, stdenv, curl, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "stdman";
  version = "2018.03.11";

  src = fetchFromGitHub {
    owner = "jeaye";
    repo = "stdman";
    rev = version;
    sha256 = "1017vwhcwlwi5sa8h6pkhj048in826wxnhl6qarykmzksvidff3r";
  };

  outputDevdoc = "out";

  preConfigure = "
    patchShebangs ./configure
    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 ];
  };
}