mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
12 lines
223 B
Nix
12 lines
223 B
Nix
assert builtins ? currentSystem;
|
|
assert !builtins ? __currentSystem;
|
|
|
|
let {
|
|
|
|
x = if builtins ? dirOf then builtins.dirOf /foo/bar else "";
|
|
|
|
y = if builtins ? fnord then builtins.fnord "foo" else "";
|
|
|
|
body = x + y;
|
|
|
|
}
|