diff options
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/help.txt | 2 | ||||
-rw-r--r-- | src/nix-env/user-env.cc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/nix-env/help.txt b/src/nix-env/help.txt index 605bf2810a42..0ebdca9b22a5 100644 --- a/src/nix-env/help.txt +++ b/src/nix-env/help.txt @@ -69,6 +69,8 @@ Options: --file / -f FILE: use Nix expression FILE for installation, etc. --verbose / -v: verbose operation (may be repeated) --keep-failed / -K: keep temporary directories of failed builds + --keep-going / -k: build as many dependencies as possible, even if + some dependencies fail to build --preserve-installed: do not replace currently installed versions in `-i' --system-filter SYSTEM: only use derivations for specified platform --prebuilt-only / -b: only use derivations whose prebuilt binaries are diff --git a/src/nix-env/user-env.cc b/src/nix-env/user-env.cc index 0dcdcc0d186f..4480a17aa923 100644 --- a/src/nix-env/user-env.cc +++ b/src/nix-env/user-env.cc @@ -118,7 +118,6 @@ bool createUserEnv(EvalState & state, DrvInfos & elems, builder with the manifest as argument. */ Value args, topLevel; state.mkAttrs(args, 3); - mkString(*state.allocAttr(args, state.sSystem), thisSystem); mkString(*state.allocAttr(args, state.symbols.create("manifest")), manifestFile, singleton<PathSet>(manifestFile)); args.attrs->push_back(Attr(state.symbols.create("derivations"), &manifest)); |