summary refs log tree commit diff
path: root/pkgs/applications/audio/google-musicmanager
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-26 19:54:51 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-05-05 11:52:08 +0200
commit3b9ef2c71b275c924c4b28caf2f8a765bfc75d14 (patch)
tree0d6fcf3d6474bdb436c0af0c975efd35df8cd6cf /pkgs/applications/audio/google-musicmanager
parentb7c3c25218f8807920318ceb61b70f4343e0bd91 (diff)
downloadnixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.gz
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.bz2
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.lz
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.xz
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.zst
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.zip
fix "libc}/lib" and similar references
Done mostly without any verification.
I didn't bother with libc}/include, as the path is still correct.
Diffstat (limited to 'pkgs/applications/audio/google-musicmanager')
-rw-r--r--pkgs/applications/audio/google-musicmanager/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/google-musicmanager/default.nix b/pkgs/applications/audio/google-musicmanager/default.nix
index e7c513febf5b..03218ad987bf 100644
--- a/pkgs/applications/audio/google-musicmanager/default.nix
+++ b/pkgs/applications/audio/google-musicmanager/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   buildPhase = ''
     patchelf \
       --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
-      --set-rpath "$out/opt/google/musicmanager:${readline}/lib:${ncurses}/lib:${stdenv.cc.libc}/lib:${qt48}/lib:${stdenv.cc.cc}/lib:${libidn}/lib:${expat}/lib:${flac}/lib:${libvorbis}/lib" opt/google/musicmanager/MusicManager
+      --set-rpath "$out/opt/google/musicmanager:${readline}/lib:${ncurses}/lib:${stdenv.cc.libc.out}/lib:${qt48}/lib:${stdenv.cc.cc}/lib:${libidn}/lib:${expat}/lib:${flac}/lib:${libvorbis}/lib" opt/google/musicmanager/MusicManager
   '';
 
   dontPatchELF = true;