e69aee3280
ocamlPackages.mirage-block: 2.0.1 → 3.0.0 ocamlPackages.mirage-block-ramdisk: disable tests ocamlPackages.mirage-block-unix: 2.12.1 → 2.14.1 ocamlPackages.mirage-unix: 4.0.0 → 4.0.1 ocamlPackages.vchan: 6.0.0 → 6.0.1 ocamlPackages.wodan-unix: mark as broken
26 lines
706 B
Nix
26 lines
706 B
Nix
{ lib, buildDunePackage, irmin-chunk, irmin-git, irmin-unix
|
|
, mirage-block-ramdisk, mirage-block-unix, wodan }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "wodan-irmin";
|
|
inherit (wodan) version src useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
/* io-page-unix */ # No longer available in nixpkgs
|
|
irmin-chunk
|
|
irmin-git
|
|
irmin-unix
|
|
mirage-block-ramdisk
|
|
mirage-block-unix
|
|
wodan
|
|
];
|
|
|
|
meta = wodan.meta // {
|
|
# wodan is currently incompatible with irmin 2.3.0.
|
|
# additionally upgrading to current master (unclear
|
|
# if the issue is fixed there) is not possible as it
|
|
# depends on a custom fork of mirage-block
|
|
broken = true;
|
|
description = "Wodan as an Irmin store";
|
|
};
|
|
}
|