mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 08:12:29 +00:00
13 lines
202 B
Nix
13 lines
202 B
Nix
let
|
|
foo = "foo";
|
|
in
|
|
{
|
|
simple = ./${foo};
|
|
surrounded = ./a-${foo}-b;
|
|
absolute = /${foo};
|
|
expr = ./${foo + "/bar"};
|
|
home = ~/${foo};
|
|
notfirst = ./bar/${foo};
|
|
slashes = /${foo}/${"bar"};
|
|
}
|