mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
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.2";
|
|
sha256Hash = "10xsbly7rv895c9zv4fqmnrxbdc0kd1qhlk75x4m9cv95f93k843";
|
|
};
|
|
}
|