forked from mirrors/nixpkgs
204f7dc335
* ocamlPackages.irmin: 2.6.0 -> 2.7.1 https://github.com/mirage/irmin/releases/tag/2.7.1 * ocamlPackages.index: 1.3.1 -> 1.4.0 https://github.com/mirage/index/releases/tag/1.4.0 * ocamlPackages.repr: 0.3.0 -> 0.4.0 https://github.com/mirage/repr/releases/tag/0.4.0 Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
28 lines
640 B
Nix
28 lines
640 B
Nix
{ lib, fetchurl, buildDunePackage, ppxlib, ppx_repr }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppx_irmin";
|
|
version = "2.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
|
|
sha256 = "fac7c032f472fb369378ad2d8fe77e7cd3b3c1c6a0d7bf59980b69528891b399";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
ppx_repr
|
|
ppxlib
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://irmin.org/";
|
|
description = "PPX deriver for Irmin generics";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ vbgl sternenseemann ];
|
|
};
|
|
}
|