mirror of
https://github.com/NixOS/nix.git
synced 2025-10-21 06:20:56 +08:00

Now that we have applied the [1] patch, the diff is much nicer and less noisy. [1]: https://www.github.com/mesonbuild/meson/pull/14861
12 lines
323 B
Meson
12 lines
323 B
Meson
experimental_feature_descriptions_md = custom_target(
|
|
command : nix_eval_for_docs + [
|
|
'--expr', 'import @INPUT0@ (builtins.fromJSON (builtins.readFile @INPUT1@))',
|
|
],
|
|
input : [
|
|
'../../generate-xp-features.nix',
|
|
xp_features_json,
|
|
],
|
|
capture : true,
|
|
output : 'experimental-feature-descriptions.md',
|
|
)
|