mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
eb7d7780b1
This is needed to avoid this https://github.com/mesonbuild/meson/issues/13774 when we go back to making our subproject directory `src`.
13 lines
327 B
Meson
13 lines
327 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',
|
|
)
|