mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
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
|
|
|