3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/fuse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
372 B
Nix
Raw Normal View History

2020-11-24 15:29:28 +00:00
{ callPackage, util-linux }:
let
mkFuse = args: callPackage (import ./common.nix args) {
2020-11-24 15:29:28 +00:00
inherit util-linux;
};
in {
fuse_2 = mkFuse {
2019-01-04 17:35:40 +00:00
version = "2.9.9";
sha256Hash = "1yxxvm58c30pc022nl1wlg8fljqpmwnchkywic3r74zirvlcq23n";
};
fuse_3 = mkFuse {
2021-09-06 22:00:55 +01:00
version = "3.10.5";
sha256Hash = "1yxh85m8fnn3w21f6g6vza7k2giizmyhcbkms4rmkcd2dd2rzk3y";
};
}