summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorDaniel Peebles <copumpkin@users.noreply.github.com>2017-10-08 16:21:27 -0400
committerGitHub <noreply@github.com>2017-10-08 16:21:27 -0400
commit416979f3f77a855b4460fa15cab52445378f660e (patch)
tree835594ae16861a2c5769bcbc747c22271f690709 /pkgs/tools/filesystems
parentd32f7f4bb3b6a80fa79f097881b92bcebf702478 (diff)
parentb426c85ce2f12b81b923bf8d0539d15a41b3a341 (diff)
downloadnixlib-416979f3f77a855b4460fa15cab52445378f660e.tar
nixlib-416979f3f77a855b4460fa15cab52445378f660e.tar.gz
nixlib-416979f3f77a855b4460fa15cab52445378f660e.tar.bz2
nixlib-416979f3f77a855b4460fa15cab52445378f660e.tar.lz
nixlib-416979f3f77a855b4460fa15cab52445378f660e.tar.xz
nixlib-416979f3f77a855b4460fa15cab52445378f660e.tar.zst
nixlib-416979f3f77a855b4460fa15cab52445378f660e.zip
Merge pull request #30150 from copumpkin/no-rpath-nonsense
Get rid of most @rpath nonsense on Darwin
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/go-mtpfs/default.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/go-mtpfs/default.nix b/pkgs/tools/filesystems/go-mtpfs/default.nix
index f46dd74b2660..028aef6024b1 100644
--- a/pkgs/tools/filesystems/go-mtpfs/default.nix
+++ b/pkgs/tools/filesystems/go-mtpfs/default.nix
@@ -16,9 +16,5 @@ buildGoPackage rec {
     sha256 = "1jcqp9n8fd9psfsnhfj6w97yp0zmyxplsig8pyp2gqzh4lnb5fqm";
   };
 
-  preFixup = stdenv.lib.optionalString stdenv.isDarwin ''
-    install_name_tool -delete_rpath "$out/lib" $bin/bin/go-mtpfs
-  '';
-
   goDeps = ./deps.nix;
 }