Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 22 lines 426 B view raw
1{ lib, buildDunePackage, irmin, astring, logs, lwt 2, alcotest, irmin-test, irmin-watcher 3}: 4 5buildDunePackage rec { 6 7 pname = "irmin-fs"; 8 9 inherit (irmin) version src strictDeps; 10 duneVersion = "3"; 11 12 propagatedBuildInputs = [ irmin astring logs lwt ]; 13 14 checkInputs = [ alcotest irmin-test irmin-watcher ]; 15 16 doCheck = true; 17 18 meta = irmin.meta // { 19 description = "Generic file-system backend for Irmin"; 20 }; 21 22}