nixpkgs/pkgs/data/documentation/stdman/default.nix
R. RyanTM 965821ff42 stdman: 2017.04.02 -> 2018.03.11
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/stdman/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- directory tree listing: https://gist.github.com/61aadf45c197a34f488d838b7d3dd602
2018-03-30 19:57:10 +01:00

35 lines
919 B
Nix

{ stdenv, curl, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "stdman-${version}";
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 stdenv.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 ];
};
}