Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-print-intf / default.nix
blob5180b58601af2f40ea757ed1b72741b7955d5e09
1 { lib
2 , fetchFromGitHub
3 , buildDunePackage
4 , dune-build-info
5 , bos
6 }:
7 let
8   author = "avsm";
9   pname = "ocaml-print-intf";
10   version = "1.2.0";
12 buildDunePackage rec {
13   inherit pname version;
14   useDune2 = true;
16   src = fetchFromGitHub {
17     owner = author;
18     repo = pname;
19     rev = "v${version}";
20     sha256 = "0hw4gl7irarcywibdjqxmrga8f7yj52wgy7sc7n0wyy74jzxb8np";
21   };
23   buildInputs = [ dune-build-info bos ];
25   meta = with lib; {
26     description = "Pretty print an OCaml cmi/cmt/cmti file in human-readable OCaml signature form ";
27     homepage = "https://github.com/${author}/${pname}";
28     license = lib.licenses.isc;
29     maintainers = [ lib.maintainers.nerdypepper ];
30   };