summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/aches/default.nix
blob: a166056100cf2ec6354e32290636c8b43291d805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  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";
    homepage = "https://gitlab.com/nomadic-labs/ringo";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}