mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
4922992a04
ocamlPackages.data-encoding: 0.7.1 → 1.0.1 ocamlPackages.index: 1.6.1 → 1.6.2 ocamlPackages.irmin: 3.7.2 → 3.9.0 ocamlPackages.irmin-http: remove at 3.7.2 ocamlPackages.mirage-kv: 4.0.1 → 6.1.1 ocamlPackages.terminal: 0.2.1 → 0.2.2
33 lines
616 B
Nix
33 lines
616 B
Nix
{ lib, buildDunePackage
|
|
, irmin, irmin-pack, ppx_irmin, digestif, cmdliner, fmt, yojson, tezos-base58
|
|
, alcotest, hex, irmin-test, fpath
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "irmin-tezos";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
irmin
|
|
irmin-pack
|
|
ppx_irmin
|
|
digestif
|
|
fmt
|
|
tezos-base58
|
|
];
|
|
|
|
buildInputs = [
|
|
cmdliner
|
|
yojson
|
|
];
|
|
|
|
checkInputs = [ alcotest hex irmin-test fpath ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "Irmin implementation of the Tezos context hash specification";
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|