summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2017-09-03 10:37:27 -0400
committerGitHub <noreply@github.com>2017-09-03 10:37:27 -0400
commit0a944b345e89ca0096974d168f49e1c6830c3fc2 (patch)
tree63079e9098b44fd8a48748daab614ebd67253fce /pkgs/tools/text
parent61733ed6ccde3427016720f2e0cd191d3d95152c (diff)
parent44cc709e29a67c8c6d361157c05916fee235ec7a (diff)
downloadnixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.tar
nixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.tar.gz
nixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.tar.bz2
nixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.tar.lz
nixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.tar.xz
nixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.tar.zst
nixpkgs-0a944b345e89ca0096974d168f49e1c6830c3fc2.zip
Merge pull request #28557 from obsidiansystems/binutils-wrapper
Binutils-wrapper: Init by refactoring out of cc-wrapper
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/xidel/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/xidel/default.nix b/pkgs/tools/text/xidel/default.nix
index 91cecce6122..95b8e270689 100644
--- a/pkgs/tools/text/xidel/default.nix
+++ b/pkgs/tools/text/xidel/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   installPhase = ''
     mkdir -p "$out/bin"
     cp -a usr/* "$out/"
-    patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out/bin/xidel"
+    patchelf --set-interpreter "$(cat $NIX_BINUTILS/nix-support/dynamic-linker)" "$out/bin/xidel"
   '';
 
   meta = with stdenv.lib; {