sshfs-fuse: remove unneeded rpath wrapping

This commit is contained in:
Jan Tojnar 2017-11-04 00:45:04 +01:00 committed by Tuomas Tynkkynen
parent 0979856cdf
commit 2dfa36233d

View File

@ -4,7 +4,6 @@
let
inherit (stdenv.lib) optional;
rpath = stdenv.lib.makeLibraryPath [ fuse3 glib ];
in stdenv.mkDerivation rec {
version = "3.3.1";
name = "sshfs-fuse-${version}";
@ -30,10 +29,6 @@ in stdenv.mkDerivation rec {
ln -sf $out/bin/sshfs $out/sbin/mount.sshfs
'';
postFixup = ''
patchelf --set-rpath '${rpath}' "$out/bin/sshfs"
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";