about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2016-04-01 17:26:16 +0200
committerLuca Bruno <lucabru@src.gnome.org>2016-04-01 17:26:16 +0200
commit7dd90837b13e31d7990981747caef14bd91147ad (patch)
treee0f0c1d819bbdbbd88e83c39c0d26e62e3adfc9f /pkgs/tools/filesystems
parent17e75a1993bcbbc7c5882c47ee0ee7d986be7277 (diff)
parentd852a23662f31df25c0712bf4af66cf7216a3a38 (diff)
downloadnixlib-7dd90837b13e31d7990981747caef14bd91147ad.tar
nixlib-7dd90837b13e31d7990981747caef14bd91147ad.tar.gz
nixlib-7dd90837b13e31d7990981747caef14bd91147ad.tar.bz2
nixlib-7dd90837b13e31d7990981747caef14bd91147ad.tar.lz
nixlib-7dd90837b13e31d7990981747caef14bd91147ad.tar.xz
nixlib-7dd90837b13e31d7990981747caef14bd91147ad.tar.zst
nixlib-7dd90837b13e31d7990981747caef14bd91147ad.zip
Merge pull request #14302 from Balletie/bindfs-fix
bindfs: Let `mount` find `bindfs` mount helper
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/bindfs/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/bindfs/default.nix b/pkgs/tools/filesystems/bindfs/default.nix
index 7d79eefb122c..80027c7a0474 100644
--- a/pkgs/tools/filesystems/bindfs/default.nix
+++ b/pkgs/tools/filesystems/bindfs/default.nix
@@ -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";