mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
10 lines
264 B
Nix
10 lines
264 B
Nix
|
with builtins;
|
||
|
with import ./utils.nix;
|
||
|
|
||
|
let
|
||
|
showExperimentalFeature = name: doc:
|
||
|
''
|
||
|
- [`${name}`](@docroot@/contributing/experimental-features/${name}.md)
|
||
|
'';
|
||
|
in xps: indent " " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))
|