a3c71c3e5d
Note: Version 3.9.3 and 3.9.4 are equivalent: "This was an "accidental" release, it is equivalent to 3.9.3."
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.9";
|
|
sha256Hash = "1yxxvm58c30pc022nl1wlg8fljqpmwnchkywic3r74zirvlcq23n";
|
|
};
|
|
|
|
fuse_3 = mkFuse {
|
|
version = "3.9.4";
|
|
sha256Hash = "1j11niqw3p94yd6mfdrkdra0nic8a38fc179y5h9yz81q39m2f3b";
|
|
};
|
|
}
|