mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
ocamlPackages.dum: cleaning
Propagate the `easy-format` dependency. Fix build with OCaml ≥ 4.09.
This commit is contained in:
parent
b41a7eeb18
commit
8706ed24e5
|
@ -1,25 +1,24 @@
|
|||
{ lib, fetchFromGitHub, buildOcaml, ocaml
|
||||
{ stdenv, fetchFromGitHub, ocaml, findlib
|
||||
, easy-format
|
||||
}:
|
||||
|
||||
buildOcaml rec {
|
||||
name = "dum";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocaml${ocaml.version}-dum-${version}";
|
||||
version = "1.0.1";
|
||||
|
||||
minimumOCamlVersion = "4.06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mjambon";
|
||||
repo = name;
|
||||
repo = "dum";
|
||||
rev = "v${version}";
|
||||
sha256 = "0yrxl97szjc0s2ghngs346x3y0xszx2chidgzxk93frjjpsr1mlr";
|
||||
};
|
||||
|
||||
buildInputs = [ easy-format ];
|
||||
buildInputs = [ ocaml findlib ];
|
||||
propagatedBuildInputs = [ easy-format ];
|
||||
|
||||
doCheck = true;
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = with lib; {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mjambon/dum;
|
||||
description = "Inspect the runtime representation of arbitrary OCaml values";
|
||||
license = licenses.lgpl21Plus;
|
||||
|
|
Loading…
Reference in a new issue