mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02: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`.
12 lines
327 B
Meson
12 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',
|
|
)
|