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

18 lines
369 B
Nix
Raw Normal View History

{ callPackage, utillinux }:
let
mkFuse = args: callPackage (import ./common.nix args) {
inherit utillinux;
};
in {
fuse_2 = mkFuse {
2019-01-04 17:35:40 +00:00
version = "2.9.9";
sha256Hash = "1yxxvm58c30pc022nl1wlg8fljqpmwnchkywic3r74zirvlcq23n";
};
fuse_3 = mkFuse {
2019-07-10 12:20:40 +01:00
version = "3.6.2";
sha256Hash = "1cxx94q6zqns1iw5d4g3ll8f78swqxl6h25bpxmqkqsj6c91pzkl";
};
}