Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
616 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitHub,
lwt_ppx,
lwt,
}:
buildDunePackage rec {
pname = "ocsipersist-lib";
version = "2.0.0";
src = fetchFromGitHub {
owner = "ocsigen";
repo = "ocsipersist";
tag = version;
hash = "sha256-7CKKwJxqxUpCMNs4xGbsMZ6Qud9AnczBStTXS+N21DU=";
};
buildInputs = [ lwt_ppx ];
propagatedBuildInputs = [ lwt ];
meta = {
description = "Persistent key/value storage (for Ocsigen) - support library";
license = lib.licenses.lgpl21Only;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/ocsigen/ocsipersist/";
};
}