ocamlPackages.ocaml-print-intf: init at 1.2.0

This commit is contained in:
Akshay 2021-08-15 11:17:51 +05:30 committed by Vincent Laporte
parent ff220d3b3f
commit 2fe4420941
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, fetchFromGitHub
, buildDunePackage
, dune-build-info
, bos
}:
let
author = "avsm";
pname = "ocaml-print-intf";
version = "1.2.0";
in
buildDunePackage rec {
inherit pname version;
useDune2 = true;
src = fetchFromGitHub {
owner = author;
repo = pname;
rev = "v${version}";
sha256 = "0hw4gl7irarcywibdjqxmrga8f7yj52wgy7sc7n0wyy74jzxb8np";
};
buildInputs = [ dune-build-info bos ];
meta = with lib; {
description = "Pretty print an OCaml cmi/cmt/cmti file in human-readable OCaml signature form ";
homepage = "https://github.com/${author}/${pname}";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.nerdypepper ];
};
}

View file

@ -878,6 +878,8 @@ let
ocaml_pcre = callPackage ../development/ocaml-modules/pcre {};
ocaml-print-intf = callPackage ../development/ocaml-modules/ocaml-print-intf { };
pgocaml = callPackage ../development/ocaml-modules/pgocaml {};
pgocaml_ppx = callPackage ../development/ocaml-modules/pgocaml/ppx.nix {};