nixpkgs/pkgs/development/ocaml-modules/dum/default.nix
2020-04-10 17:54:53 +01:00

28 lines
680 B
Nix

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