mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
9 lines
94 B
Nix
9 lines
94 B
Nix
with import ./lib.nix;
|
|
|
|
concat (
|
|
map (x: x + "bar") [
|
|
"foo"
|
|
"bla"
|
|
"xyzzy"
|
|
]
|
|
)
|