mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
add a patch to correctly use coreutils to create a profile. This is needed for NixOS, where we might not know our PATH in advance.
svn path=/nixpkgs/trunk/; revision=4066
This commit is contained in:
parent
552de99c19
commit
696f46f737
@ -15,5 +15,6 @@ stdenv.mkDerivation {
|
||||
md5 = "fc3a24f72760e357ac29935b2aebce0b";
|
||||
};
|
||||
buildInputs = [aterm bdb perl curl];
|
||||
patches = [./nix-profile-0.9.2.patch];
|
||||
inherit storeDir stateDir aterm bdb;
|
||||
}
|
||||
|
12
pkgs/misc/nix/nix-profile-0.9.2.patch
Normal file
12
pkgs/misc/nix/nix-profile-0.9.2.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -ruN nix-0.9.2/scripts/nix-profile.sh.in nix-0.9.2.new/scripts/nix-profile.sh.in
|
||||
--- nix-0.9.2/scripts/nix-profile.sh.in 2005-09-21 20:29:43.000000000 +0200
|
||||
+++ nix-0.9.2.new/scripts/nix-profile.sh.in 2005-10-11 18:44:57.000000000 +0200
|
||||
@@ -4,7 +4,7 @@
|
||||
if ! test -L "$NIX_LINK"; then
|
||||
echo "creating $NIX_LINK"
|
||||
_NIX_DEF_LINK=@localstatedir@/nix/profiles/default
|
||||
- ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
|
||||
+ @coreutils@/ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
|
||||
fi
|
||||
|
||||
export PATH=$NIX_LINK/bin:@prefix@/bin:$PATH
|
Loading…
Reference in New Issue
Block a user