ec1082c58f
Upstream changelog: - SECURITY UPDATE: In previous versions of libfuse it was possible to for unprivileged users to specify the allow_other option even when this was forbidden in /etc/fuse.conf. The vulnerability is present only on systems where SELinux is active (including in permissive mode). - libfuse no longer segfaults when fuse_interrupted() is called outside the event loop. - The fusermount binary has been hardened in several ways to reduce potential attack surface. Most importantly, mountpoints and mount options must now match a hard-coded whitelist. It is expected that this whitelist covers all regular use-cases. - Fixed rename deadlock on FreeBSD.
18 lines
369 B
Nix
18 lines
369 B
Nix
{ callPackage, utillinux }:
|
|
|
|
let
|
|
mkFuse = args: callPackage (import ./common.nix args) {
|
|
inherit utillinux;
|
|
};
|
|
in {
|
|
fuse_2 = mkFuse {
|
|
version = "2.9.8";
|
|
sha256Hash = "0s04ln4k9zvvbjih8ybaa19fxg8xv7dcsz2yrlbk35psnf3l67af";
|
|
};
|
|
|
|
fuse_3 = mkFuse {
|
|
version = "3.2.5";
|
|
sha256Hash = "0ibf2isbkm8p1gfaqpqblwsg0lm4s1rmcipv1qcg0wc4wwsbnqpx";
|
|
};
|
|
}
|