eec6d815c9
ocamlPackages.atdgen-codec-runtime: 2.16.0 → 3.0.1
29 lines
636 B
Nix
29 lines
636 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitLab,
|
|
yojson,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "ocf";
|
|
version = "0.9.0";
|
|
patches = ./yojson.patch;
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "zoggy";
|
|
repo = "ocf";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-tTNpvncLO/WfcMbjqRfqzcdPv2Bd877fOU5AZlkkcXA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ yojson ];
|
|
|
|
meta = {
|
|
description = "OCaml library to read and write configuration options in JSON syntax";
|
|
homepage = "https://zoggy.frama.io/ocf/";
|
|
license = lib.licenses.lgpl3;
|
|
maintainers = with lib.maintainers; [ regnat ];
|
|
};
|
|
})
|