2014-11-17 22:13:39 +01:00
|
|
|
{ stdenv, curl, fetchFromGitHub }:
|
2014-11-15 02:22:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "stdman";
|
2018-03-30 10:33:14 -07:00
|
|
|
version = "2018.03.11";
|
2014-11-15 02:22:29 +00:00
|
|
|
|
2014-11-17 22:13:39 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jeaye";
|
|
|
|
repo = "stdman";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2018-03-30 10:33:14 -07:00
|
|
|
sha256 = "1017vwhcwlwi5sa8h6pkhj048in826wxnhl6qarykmzksvidff3r";
|
2014-11-15 02:22:29 +00:00
|
|
|
};
|
|
|
|
|
2016-09-20 16:51:51 +02:00
|
|
|
outputDevdoc = "out";
|
2016-01-28 13:55:37 +01:00
|
|
|
|
2015-01-08 10:26:49 +01:00
|
|
|
preConfigure = "
|
|
|
|
patchShebangs ./configure
|
|
|
|
patchShebangs ./do_install
|
|
|
|
";
|
|
|
|
|
2014-11-15 02:22:29 +00:00
|
|
|
buildInputs = [ curl ];
|
2016-01-28 13:55:37 +01:00
|
|
|
|
2014-11-15 02:22:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-11-16 16:34:48 -08:00
|
|
|
description = "Formatted C++17 stdlib man pages (cppreference)";
|
2014-11-15 02:22:29 +00: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.";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/jeaye/stdman";
|
2014-11-15 02:22:29 +00:00
|
|
|
license = licenses.mit;
|
2016-10-06 10:23:15 +02:00
|
|
|
platforms = platforms.unix;
|
2014-11-15 02:22:29 +00:00
|
|
|
maintainers = [ maintainers.twey ];
|
|
|
|
};
|
|
|
|
}
|