summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/aches/default.nix
blob: c590ecc04bdc8701314db60d5fab61feb90496ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  };
}