blob: 15eb9a8ef5642e4ed9aea300a4aa8ce7ffb3aefa (
plain)
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,
buildDunePackage,
fetchurl,
ppx_deriving,
testo,
}:
buildDunePackage (finalAttrs: {
pname = "yamlx";
version = "0.3.0";
src = fetchurl {
url = "https://github.com/mjambon/yamlx/releases/download/${finalAttrs.version}/yamlx-${finalAttrs.version}.tbz";
hash = "sha256-9pGp4XSCjMEwsUqHtwoyLBKTUdPjmYccqaU3dLkgVzg=";
};
propagatedBuildInputs = [ ppx_deriving ];
doCheck = true;
checkInputs = [ testo ];
minimalOCamlVersion = "4.14";
meta = {
description = "Pure-OCaml YAML 1.2 parser with a lossless, comment-preserving AST";
maintainers = [ lib.maintainers.vbgl ];
license = lib.licenses.agpl3Only;
homepage = "https://github.com/mjambon/yamlx";
};
})
|