37 lines
682 B
Nix
37 lines
682 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
buildDunePackage,
|
|
ppxlib,
|
|
ppx_repr,
|
|
logs,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "ppx_irmin";
|
|
version = "3.11.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/irmin/releases/download/${finalAttrs.version}/irmin-${finalAttrs.version}.tbz";
|
|
hash = "sha256-CZlvvMLEPhF6m9jpAoxjXoHMyyZNXgLUJauLBrus29s=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.10";
|
|
|
|
propagatedBuildInputs = [
|
|
ppx_repr
|
|
ppxlib
|
|
logs
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://irmin.org/";
|
|
description = "PPX deriver for Irmin generics";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [
|
|
vbgl
|
|
sternenseemann
|
|
];
|
|
};
|
|
})
|