mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
73eb6a2a57
As requested by @fricklerhandwerk.
9 lines
275 B
Nix
9 lines
275 B
Nix
with builtins;
|
|
with import ./utils.nix;
|
|
|
|
let
|
|
showExperimentalFeature = name: doc:
|
|
''
|
|
- [`${name}`](@docroot@/contributing/experimental-features.md#xp-feature-${name})
|
|
'';
|
|
in xps: indent " " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))
|