```nix { stdenv , x # nil warns "unused binding", but it is used }: stdenv.mkDerivation { x = '''${x}''; # x = "'${x}"; # this works } ```