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 {
2022-06-11 09:54:01 +00:00
version = "3.11.0";
sha256Hash = "1wx80xxlvjn0wxhmkr1g91vwrgxssyzds1hizzxc2xrd4kjh9dfb";
};
}