nixpkgs/pkgs/development/ocaml-modules/aches/default.nix
2023-05-02 16:47:31 +02:00

17 lines
338 B
Nix

{ lib, buildDunePackage, ringo }:
buildDunePackage {
pname = "aches";
inherit (ringo) src version;
propagatedBuildInputs = [
ringo
];
meta = {
description = "Caches (bounded-size stores) for in-memory values and for resources";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}