nixpkgs/pkgs/data/documentation/stdman/default.nix

35 lines
904 B
Nix
Raw Normal View History

{ lib, stdenv, curl, fetchFromGitHub }:
2014-11-14 18:22:29 -08:00
stdenv.mkDerivation rec {
pname = "stdman";
version = "2018.03.11";
2014-11-14 18:22:29 -08:00
src = fetchFromGitHub {
owner = "jeaye";
repo = "stdman";
2019-09-08 16:38:31 -07:00
rev = version;
sha256 = "1017vwhcwlwi5sa8h6pkhj048in826wxnhl6qarykmzksvidff3r";
2014-11-14 18:22:29 -08:00
};
outputDevdoc = "out";
preConfigure = "
patchShebangs ./configure
patchShebangs ./do_install
";
2014-11-14 18:22:29 -08:00
buildInputs = [ curl ];
meta = with lib; {
2017-11-16 16:34:48 -08:00
description = "Formatted C++17 stdlib man pages (cppreference)";
2014-11-14 18:22:29 -08:00
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";
2014-11-14 18:22:29 -08:00
license = licenses.mit;
2016-10-06 01:23:15 -07:00
platforms = platforms.unix;
2014-11-14 18:22:29 -08:00
maintainers = [ maintainers.twey ];
};
}