nixpkgs/pkgs/os-specific/linux/fuse/default.nix

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-04-12 11:31:17 +00:00
version = "3.10.3";
sha256Hash = "054g3jqy8lhlj8kkwd16wxaxzynmh8h5iv20cryd0psg0hgmhd7v";
};
}