7d0f6aed59
contexts. Needed to prevent unnecessary dependencies when building the NixOS manual.
6 lines
213 B
Nix
6 lines
213 B
Nix
let s = "foo ${builtins.substring 33 100 (baseNameOf ./eval-okay-context.nix)} bar";
|
|
in
|
|
if s == "foo eval-okay-context.nix bar"
|
|
then abort "context not discarded"
|
|
else builtins.unsafeDiscardStringContext s
|
|
|