ocamlPackages.dum: init at 1.0.1 (#74817)

* ocamlPackages.dum: init at 1.0.1

* Cleanup
This commit is contained in:
Alexandre Esteves 2020-01-26 01:10:17 +00:00 committed by Profpatsch
parent 42b8090a01
commit 8604575f6b
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, fetchFromGitHub, buildOcaml, ocaml
, easy-format
}:
buildOcaml rec {
name = "dum";
version = "1.0.1";
minimumOCamlVersion = "4.06";
src = fetchFromGitHub {
owner = "mjambon";
repo = name;
rev = "v${version}";
sha256 = "0yrxl97szjc0s2ghngs346x3y0xszx2chidgzxk93frjjpsr1mlr";
};
buildInputs = [ easy-format ];
doCheck = true;
meta = with lib; {
homepage = https://github.com/mjambon/dum;
description = "Inspect the runtime representation of arbitrary OCaml values";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.alexfmpe ];
};
}

View file

@ -241,6 +241,8 @@ let
duff = callPackage ../development/ocaml-modules/duff { };
dum = callPackage ../development/ocaml-modules/dum { };
dune = callPackage ../development/tools/ocaml/dune { };
dune_2 = callPackage ../development/tools/ocaml/dune/2.nix { };