mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 05:04:40 +00:00
20 lines
310 B
Nix
20 lines
310 B
Nix
{
|
|
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";
|
|
};
|
|
}
|