mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
c59b8ce9c3
* ocamlPackages.index: 1.2.1 -> 1.3.0 * ocamlPackages.decompress: 0.9.0 -> 1.2.0 * ocamlPackages.imagelib-unix: remove at 20191011 * ocamlPackages.imagelib: 20191011 -> 20200929 * ocamlPackages.duff: 0.2 -> 0.3 * ocamlPackages.carton{,-git,-lwt}: init at 0.2.0 * ocamlPackages.encore: 0.5 → 0.7 * ocamlPackages.git-http: remove at 2.1.3 * ocamlPackages.git-unix: move into git directory * ocamlPackages.irmin-mem: remove at 2.2.0 Replaced by irmin.mem contained in ocamlPackages.irmin >= 2.4.0 * ocamlPackages.git*: 2.1.3 -> 3.2.0 ocamlPackages.git-unix: 2.1.3 -> 3.2.0 ocamlPackages.git-cohttp{,-unix,-mirage}: init at 3.2.0 * ocamlPackages.irmin*: 2.2.0 -> 2.4.0 ocamlPackages.irmin-containers: init at 2.4.0 ocamlPackages.irmin-layers: init at 2.4.0 ocamlPackages.irmin-mirage: init at 2.4.0 ocamlPackages.irmin-mirage-git: init at 2.4.0 ocamlPackages.irmin-mirage-graphql: init at 2.4.0 * ocamlPackages.wodan-irmin: mark as broken
27 lines
681 B
Nix
27 lines
681 B
Nix
{ 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
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|