mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #14302 from Balletie/bindfs-fix
bindfs: Let `mount` find `bindfs` mount helper
This commit is contained in:
commit
7dd90837b1
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue