ocamlPackages.cachet-lwt: init at 0.0.2

This commit is contained in:
Vincent Laporte
2025-10-03 07:12:12 +02:00
parent 1ab76fda97
commit 3bfb5c71eb
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
buildDunePackage,
cachet,
lwt,
alcotest,
}:
buildDunePackage {
pname = "cachet-lwt";
inherit (cachet) src version;
propagatedBuildInputs = [
cachet
lwt
];
doCheck = true;
checkInputs = [ alcotest ];
meta = cachet.meta // {
description = "A simple cache system for mmap and lwt";
};
}

View File

@@ -163,6 +163,8 @@ let
cachet = callPackage ../development/ocaml-modules/cachet { };
cachet-lwt = callPackage ../development/ocaml-modules/cachet/lwt.nix { };
cairo2 = callPackage ../development/ocaml-modules/cairo2 { };
calendar = callPackage ../development/ocaml-modules/calendar { };