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

35 lines
919 B
Nix
Raw Normal View History

{ stdenv, curl, fetchFromGitHub }:
2014-11-15 02:22:29 +00:00
stdenv.mkDerivation rec {
name = "stdman-${version}";
2017-11-17 00:34:48 +00:00
version = "2017.04.02";
2014-11-15 02:22:29 +00:00
src = fetchFromGitHub {
owner = "jeaye";
repo = "stdman";
2017-11-17 00:34:48 +00:00
rev = "${version}";
sha256 = "1wfxd9ca8b9l976rnlhjd0sp364skfm99wxi633swwwjvhy26sgm";
2014-11-15 02:22:29 +00:00
};
outputDevdoc = "out";
preConfigure = "
patchShebangs ./configure
patchShebangs ./do_install
";
2014-11-15 02:22:29 +00:00
buildInputs = [ curl ];
2014-11-15 02:22:29 +00:00
meta = with stdenv.lib; {
2017-11-17 00:34:48 +00: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.";
homepage = https://github.com/jeaye/stdman;
license = licenses.mit;
2016-10-06 08:23:15 +00:00
platforms = platforms.unix;
2014-11-15 02:22:29 +00:00
maintainers = [ maintainers.twey ];
};
}