summary refs log blame commit diff
path: root/pkgs/data/documentation/stdman/default.nix
blob: e0f08e6049d4b3c171422d51b952db86724f4b25 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       

                         
                   
                         
 


                         
                  
                                                                   

    
                       
 




                              
                         
 
                    
                                                                    



                                                                    
                                                 
                           
                               


                                       
{ lib, stdenv, curl, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "stdman";
  version = "2020.11.17";

  src = fetchFromGitHub {
    owner = "jeaye";
    repo = "stdman";
    rev = version;
    sha256 = "sha256-pzAVuXSuUfwI7gQpFqmH/+klSUH3KipZup2TgZs8XsY=";
  };

  outputDevdoc = "out";

  preConfigure = "
    patchShebangs ./configure
    patchShebangs ./do_install
  ";

  buildInputs = [ curl ];

  meta = with 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 ];
  };
}