ocamlPackages.dum: init at 1.0.1 (#74817)
* ocamlPackages.dum: init at 1.0.1 * Cleanup
This commit is contained in:
parent
42b8090a01
commit
8604575f6b
28
pkgs/development/ocaml-modules/dum/default.nix
Normal file
28
pkgs/development/ocaml-modules/dum/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user