depot/third_party/nixpkgs/pkgs/development/ocaml-modules/aches/default.nix

17 lines
338 B
Nix
Raw Normal View History

{ 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 ];
};
}