about summary refs log tree commit diff
path: root/scripts/nix-profile.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-04-09T12·26+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-04-09T12·26+0000
commitaa8fda4b54fbd84b7bc6b11904c156367683e8f6 (patch)
tree736e0545b69f5062be1d8bb366bd0617e8469911 /scripts/nix-profile.sh
parentf56b7312b273546871a1eca7d34c60474d3c4050 (diff)
* We no longer use nix-populate standalone, rather we use it as a
  build action for `system' packages (like system.fix) that have
  dependencies on all packages we want to activate.

  So the command sequence to switch to a new activation configuration
  of the system would be:

    $ fix -i .../fixdescriptors/system.fix
    ...
    system.fix -> 89cf4713b37cc66989304abeb9ea189f

    $ nix-switch 89cf4713b37cc66989304abeb9ea189f

* A nix-profile.sh script that can be included in .bashrc.

Diffstat (limited to 'scripts/nix-profile.sh')
-rw-r--r--scripts/nix-profile.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/nix-profile.sh b/scripts/nix-profile.sh
new file mode 100644
index 000000000000..977210165bda
--- /dev/null
+++ b/scripts/nix-profile.sh
@@ -0,0 +1,15 @@
+if test -z "$NIX_SET"; then
+
+    export NIX_SET=1
+
+    NIX_LINKS=/nix/var/nix/links/current
+
+    export PATH=$NIX_LINKS/bin:/nix/bin:$PATH
+
+    export LD_LIBRARY_PATH=$NIX_LINKS/lib:$LD_LIBRARY_PATH
+
+    export LIBRARY_PATH=$NIX_LINKS/lib:$LIBRARY_PATH
+
+    export C_INCLUDE_PATH=$NIX_LINKS/include:$C_INCLUDE_PATH
+
+fi
\ No newline at end of file