Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
433 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
irmin,
astring,
logs,
lwt,
alcotest,
irmin-test,
irmin-watcher,
}:
buildDunePackage {
pname = "irmin-fs";
inherit (irmin) version src;
propagatedBuildInputs = [
irmin
astring
logs
lwt
];
checkInputs = [
alcotest
irmin-test
irmin-watcher
];
doCheck = true;
meta = irmin.meta // {
description = "Generic file-system backend for Irmin";
};
}