2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildDunePackage
|
2021-02-16 17:04:54 +00:00
|
|
|
, checkseum, cmdliner, git-unix, git-cohttp-unix, yaml, fpath
|
|
|
|
, irmin, irmin-fs, irmin-git, irmin-graphql, irmin-http
|
2021-05-20 23:08:51 +00:00
|
|
|
, irmin-pack, irmin-watcher, irmin-test, cacert
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
|
|
|
|
pname = "irmin-unix";
|
|
|
|
|
|
|
|
inherit (irmin) version src;
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2021-02-16 17:04:54 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
checkseum cmdliner git-unix yaml fpath
|
|
|
|
irmin irmin-fs irmin-git irmin-graphql irmin-http
|
|
|
|
irmin-pack irmin-watcher git-cohttp-unix
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
checkInputs = [
|
|
|
|
irmin-test cacert
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = irmin.meta // {
|
|
|
|
description = "Unix backends for Irmin";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|