2014-11-17 21:13:39 +00:00
|
|
|
{ stdenv, curl, fetchFromGitHub }:
|
2014-11-15 02:22:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "stdman-${version}";
|
|
|
|
version = "d860212";
|
|
|
|
|
2014-11-17 21:13:39 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jeaye";
|
|
|
|
repo = "stdman";
|
2014-11-15 02:22:29 +00:00
|
|
|
rev = "d860212767ca60472e33aa3bad22a3eac834b1f8";
|
2014-11-17 21:13:39 +00:00
|
|
|
sha256 = "09c5gjhcz97ghfrv9zkgfb1wckvmqnhbzga0xidbm1ir7640di8l";
|
2014-11-15 02:22:29 +00:00
|
|
|
};
|
|
|
|
|
2016-09-20 15:51:51 +01:00
|
|
|
outputDevdoc = "out";
|
2016-01-28 12:55:37 +00:00
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
preConfigure = "
|
|
|
|
patchShebangs ./configure
|
|
|
|
patchShebangs ./do_install
|
|
|
|
";
|
|
|
|
|
2014-11-15 02:22:29 +00:00
|
|
|
buildInputs = [ curl ];
|
2016-01-28 12:55:37 +00:00
|
|
|
|
2014-11-15 02:22:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Formatted C++11/14 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;
|
2016-10-06 09:23:15 +01:00
|
|
|
platforms = platforms.unix;
|
2014-11-15 02:22:29 +00:00
|
|
|
maintainers = [ maintainers.twey ];
|
|
|
|
};
|
|
|
|
}
|