about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocsipersist/lib.nix
blob: a2abc5d9b399eda9fd7bc7d4e2987aa9d5d8d405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildDunePackage, fetchFromGitHub
, lwt_ppx, lwt
}:

buildDunePackage rec {
  pname = "ocsipersist-lib";
  version = "1.1.0";

  useDune2 = true;

  src = fetchFromGitHub {
    owner = "ocsigen";
    repo = "ocsipersist";
    rev = version;
    sha256 = "sha256:1d6kdcfjvrz0dl764mnyxc477aa57rvmzkg154qc915w2y1nbz9a";
  };

  buildInputs = [ lwt_ppx ];
  propagatedBuildInputs = [ lwt ];

  meta = {
    description = "Persistent key/value storage (for Ocsigen) - support library";
    license = lib.licenses.lgpl21Only;
    maintainers = [ lib.maintainers.vbgl ];
    inherit (src.meta) homepage;
  };
}