git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
635 B
Nix
24 lines
635 B
Nix
{ lib, buildDunePackage, fetchFromGitLab, yojson }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocf";
|
|
version = "0.9.0";
|
|
duneVersion = "3";
|
|
minimalOCamlVersion = "4.03";
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "zoggy";
|
|
repo = "ocf";
|
|
rev = version;
|
|
sha256 = "sha256-tTNpvncLO/WfcMbjqRfqzcdPv2Bd877fOU5AZlkkcXA=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|