nixpkgs/pkgs/development/ocaml-modules/irmin/ppx.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
641 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, ppxlib, ppx_repr, logs }:
2020-04-13 15:38:32 +00:00
buildDunePackage rec {
2020-04-13 15:38:32 +00:00
pname = "ppx_irmin";
2023-02-04 20:27:33 +00:00
version = "3.5.1";
2020-04-13 15:38:32 +00:00
src = fetchurl {
url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
2023-02-04 20:27:33 +00:00
hash = "sha256-zXiKjT9KPdGNwWChU9SuyR6vaw+0GtQUZNJsecMEqY4=";
};
minimalOCamlVersion = "4.10";
2023-02-04 20:27:33 +00:00
duneVersion = "3";
2020-04-13 15:38:32 +00:00
propagatedBuildInputs = [
ppx_repr
ppxlib
logs
];
2020-04-13 15:38:32 +00:00
meta = {
homepage = "https://irmin.org/";
2020-04-13 15:38:32 +00:00
description = "PPX deriver for Irmin generics";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ vbgl sternenseemann ];
2020-04-13 15:38:32 +00:00
};
}