1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/ocaml-modules/dum/default.nix
Alexandre Esteves 8604575f6b ocamlPackages.dum: init at 1.0.1 (#74817)
* ocamlPackages.dum: init at 1.0.1

* Cleanup
2020-01-26 02:10:17 +01:00

29 lines
603 B
Nix

{ 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 ];
};
}