Merge pull request #14302 from Balletie/bindfs-fix

bindfs: Let `mount` find `bindfs` mount helper
This commit is contained in:
Luca Bruno 2016-04-01 17:26:16 +02:00
commit 7dd90837b1

@ -12,6 +12,9 @@ stdenv.mkDerivation rec {
dontStrip = true;
buildInputs = [ fuse pkgconfig ];
postFixup = ''
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
'';
meta = {
description = "A FUSE filesystem for mounting a directory to another location";