nixpkgs/pkgs/development/ocaml-modules/ocf/default.nix
Vincent Laporte d50c9666ca stog: 0.18.0 → 0.20.0
ocamlPackages.higlo: 0.6 → 0.8

ocamlPackages.iri: 0.4.0 → 0.6.0

ocamlPackages.ocf: 0.5.0 → 0.8.0

ocamlPackages.ocf_ppx: init at 0.8.0

ocamlPackages.xtmpl: 0.17.0 → 0.19.0

ocamlPackages.xtmpl_ppx: init at 0.19.0
2021-12-30 08:23:22 +01:00

25 lines
641 B
Nix

{ lib, buildDunePackage, fetchFromGitLab, yojson }:
buildDunePackage rec {
pname = "ocf";
version = "0.8.0";
useDune2 = true;
minimalOCamlVersion = "4.03";
src = fetchFromGitLab {
domain = "framagit.org";
owner = "zoggy";
repo = "ocf";
rev = version;
sha256 = "sha256:00ap3q5yjqmpk87lxqv1j2wkc7583ynhjr1jjrfn9r0j2h9pfd60";
};
propagatedBuildInputs = [ yojson ];
meta = with lib; {
description = "OCaml library to read and write configuration options in JSON syntax";
homepage = "https://zoggy.frama.io/ocf/";
license = licenses.lgpl3;
maintainers = with maintainers; [ regnat ];
};
}