summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/odoc/default.nix
blob: 68c06cc4c6f789ab2f4ee2b8aa902c5ec74bcaa5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
                                               
                                       
  
 

                      
                    
 



                                                                                           
                                                                    

    

                  
                                                             
 


                                                      

                                                        

                                           
                                               

    
{ lib, fetchurl, buildDunePackage, ocaml
, astring, cmdliner, cppo, fpath, result, tyxml
, markup, alcotest, yojson, sexplib, jq
}:

buildDunePackage rec {
  pname = "odoc";
  version = "1.5.3";

  minimumOCamlVersion = "4.02";

  src = fetchurl {
    url = "https://github.com/ocaml/odoc/releases/download/${version}/odoc-${version}.tbz";
    sha256 = "0idzidmz7y10xkwcf4aih0mdvkipxk1gzi4anhnbbi2q2s0nzdzj";
  };

  useDune2 = true;

  buildInputs = [ astring cmdliner cppo fpath result tyxml ];

  checkInputs = [ alcotest markup yojson sexplib jq ];
  doCheck = lib.versionAtLeast ocaml.version "4.05";

  meta = {
    description = "A documentation generator for OCaml";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
    homepage = "https://github.com/ocaml/odoc";
  };
}