2020-12-26 18:52:48 +01:00
|
|
|
{ lib, buildDunePackage, io-page-unix, 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
|
|
|
|
irmin-chunk
|
|
|
|
irmin-git
|
|
|
|
irmin-unix
|
|
|
|
mirage-block-ramdisk
|
|
|
|
mirage-block-unix
|
|
|
|
wodan
|
|
|
|
];
|
|
|
|
|
2021-02-16 08:39:46 +01:00
|
|
|
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";
|
|
|
|
};
|
2020-12-26 18:52:48 +01:00
|
|
|
}
|