blob: 3d6b0957935fdebeb5ec9891143c0ebcd1c47026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
buildDunePackage,
atd-jsonlike,
yamlx,
}:
buildDunePackage {
pname = "atd-yamlx";
inherit (atd-jsonlike) version src;
propagatedBuildInputs = [
atd-jsonlike
yamlx
];
meta = atd-jsonlike.meta // {
description = "YAML-to-jsonlike bridge for use with ATD code generators";
};
}
|