about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lru/default.nix
blob: e5c7937b27a4910c5959e6848df21c41361b0367 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchurl, buildDunePackage, psq }:

buildDunePackage rec {
  pname = "lru";
  version = "0.3.0";

  src = fetchurl {
    url = "https://github.com/pqwy/lru/releases/download/v${version}/lru-v${version}.tbz";
    sha256 = "1ab9rd7cq15ml8x0wjl44wy99h5z7x4g9vkkz4i2d7n84ghy7vw4";
  };

  propagatedBuildInputs = [ psq ];

  meta = {
    homepage = "https://github.com/pqwy/lru";
    description = "Scalable LRU caches for OCaml";
    maintainers = [ lib.maintainers.vbgl ];
    license = lib.licenses.isc;
  };
}