mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
e3936ac9c1
source now inherit ppx_irmin instead of irmin, since we can test irmin using ppx_irmin and this way we avoid circular dependencies.
24 lines
347 B
Nix
24 lines
347 B
Nix
{ lib, buildDunePackage, irmin, irmin-test }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-fs";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
propagatedBuildInputs = [ irmin ];
|
|
|
|
useDune2 = true;
|
|
|
|
checkInputs = lib.optional doCheck irmin-test;
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "Generic file-system backend for Irmin";
|
|
};
|
|
|
|
}
|
|
|
|
|