mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
28 lines
641 B
Nix
28 lines
641 B
Nix
{ lib, fetchurl, buildDunePackage, ppxlib, ppx_repr, logs }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppx_irmin";
|
|
version = "3.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
|
|
hash = "sha256-zXiKjT9KPdGNwWChU9SuyR6vaw+0GtQUZNJsecMEqY4=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.10";
|
|
duneVersion = "3";
|
|
|
|
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 ];
|
|
};
|
|
}
|