python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / dum / default.nix
blob3faef36e8ec4b0c9e3a1c1ee0c83dfab7ed35ce8
1 { lib, stdenv, fetchFromGitHub, ocaml, findlib
2 , easy-format
3 }:
5 stdenv.mkDerivation rec {
6   pname = "ocaml${ocaml.version}-dum";
7   version = "1.0.1";
9   src = fetchFromGitHub {
10     owner = "mjambon";
11     repo = "dum";
12     rev = "v${version}";
13     sha256 = "0yrxl97szjc0s2ghngs346x3y0xszx2chidgzxk93frjjpsr1mlr";
14   };
16   nativeBuildInputs = [ ocaml findlib ];
17   propagatedBuildInputs = [ easy-format ];
19   strictDeps = true;
21   createFindlibDestdir = true;
23   meta = with lib; {
24     homepage = "https://github.com/mjambon/dum";
25     description = "Inspect the runtime representation of arbitrary OCaml values";
26     license = licenses.lgpl21Plus;
27     maintainers = [ maintainers.alexfmpe ];
28   };