about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/yaml/default.nix
blob: 43481e4c7f387b8313b6c179e8b07168421537b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, fetchurl, buildDunePackage, ocaml
, dune-configurator
, bos, ctypes, fmt, logs, rresult
, mdx, alcotest, crowbar, junit_alcotest, ezjsonm
}:

buildDunePackage rec {
  pname = "yaml";
  version = "3.0.0";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/avsm/ocaml-yaml/releases/download/v${version}/yaml-v${version}.tbz";
    sha256 = "1iws6lbnrrd5hhmm7lczfvqp0aidx5xn7jlqk2s5rjfmj9qf4j2c";
  };

  buildInputs = [ dune-configurator ];
  propagatedBuildInputs = [ bos ctypes rresult ];
  # crowbar is not available for OCaml < 4.08
  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [ fmt logs mdx.bin alcotest crowbar junit_alcotest ezjsonm ];

  meta = {
    description = "Parse and generate YAML 1.1 files";
    homepage = "https://github.com/avsm/ocaml-yaml";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };

}