New package: stdman

This commit is contained in:
James ‘Twey’ Kay 2014-11-15 02:22:29 +00:00 committed by Aristid Breitkreuz
parent 2d3ec7d6f8
commit bb999776f3
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, curl, fetchgit }:
stdenv.mkDerivation rec {
name = "stdman-${version}";
version = "d860212";
src = fetchgit {
url = "git://github.com/jeaye/stdman";
sha256 = "0fr4bw6rsddf95chdlwami9q1fwwfbk4di35zzi25zg72ibi12qz";
rev = "d860212767ca60472e33aa3bad22a3eac834b1f8";
};
preConfigure = "
substituteInPlace configure --replace /bin/bash /bin/sh;
substituteInPlace do_install --replace /bin/bash /bin/sh;
";
buildInputs = [ curl ];
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;
platforms = platforms.linux;
maintainers = [ maintainers.twey ];
};
}

View file

@ -2374,6 +2374,8 @@ let
inherit (gnome) libgnomeui scrollkeeper;
};
stdman = callPackage ../data/documentation/stdman { };
storebrowse = callPackage ../tools/system/storebrowse { };
fusesmb = callPackage ../tools/filesystems/fusesmb { };