Files
nixpkgs/pkgs/development/ocaml-modules/ocf/default.nix
T
Vincent Laporte eec6d815c9 ocamlPackages.yojson: 2.2.2 → 3.0.0
ocamlPackages.atdgen-codec-runtime: 2.16.0 → 3.0.1
2025-12-12 06:35:52 +01:00

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 ];
};
})