nixpkgs/pkgs/os-specific/linux/fuse/default.nix
Michael Weiss a3c71c3e5d
fuse3: 3.9.2 -> 3.9.4 (#95072)
Note: Version 3.9.3 and 3.9.4 are equivalent:
"This was an "accidental" release, it is equivalent to 3.9.3."
2020-08-10 16:04:55 +02:00

18 lines
369 B
Nix

{ callPackage, utillinux }:
let
mkFuse = args: callPackage (import ./common.nix args) {
inherit utillinux;
};
in {
fuse_2 = mkFuse {
version = "2.9.9";
sha256Hash = "1yxxvm58c30pc022nl1wlg8fljqpmwnchkywic3r74zirvlcq23n";
};
fuse_3 = mkFuse {
version = "3.9.4";
sha256Hash = "1j11niqw3p94yd6mfdrkdra0nic8a38fc179y5h9yz81q39m2f3b";
};
}