aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-26 15:14:33 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-26 15:14:33 -0400
commit8c7910083976e255300efa797030448f5a1cb864 (patch)
treeafbd7a37d0724feb408a2d025364ed3938b5673a /scripts
parentaa115e22df1c80e8878237a9e704d7d70783a243 (diff)
parent3a4623afbbc1bff85bde33167d36e8c5a4a3df0d (diff)
Merge branch 'master' into no-manifests
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/nix-build.in4
-rw-r--r--scripts/nix-profile.sh.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/scripts/nix-build.in b/scripts/nix-build.in
index 13404f1dc..aa3f4661a 100755
--- a/scripts/nix-build.in
+++ b/scripts/nix-build.in
@@ -123,6 +123,10 @@ EOF
elsif ($arg eq "--show-trace") {
push @instArgs, $arg;
}
+
+ elsif ($arg eq "-") {
+ @exprs = ("-");
+ }
elsif ($arg eq "--verbose" or substr($arg, 0, 2) eq "-v") {
push @buildArgs, $arg;
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in
index d343385cc..bc3dc719e 100644
--- a/scripts/nix-profile.sh.in
+++ b/scripts/nix-profile.sh.in
@@ -19,9 +19,9 @@ fi
export PATH="$HOME/.nix-profile/bin:$PATH"
-# Subscribe the root user to the NixOS channel by default.
+# Subscribe the root user to the Nixpkgs channel by default.
if [ "$USER" = root -a ! -e $HOME/.nix-channels ]; then
- echo "http://nixos.org/releases/nixos/channels/nixos-unstable nixos" > $HOME/.nix-channels
+ echo "http://nixos.org/releases/nixos/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
fi
# Create the per-user garbage collector roots directory.
@@ -43,7 +43,7 @@ fi
# Set up secure multi-user builds: non-root users build through the
# Nix daemon.
-if test "$USER" != root; then
+if [ "$USER" != root -a -e @localstatedir@/nix/daemon-socket/socket ]; then
export NIX_REMOTE=daemon
else
unset NIX_REMOTE