mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +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.1";
|
|
sha256Hash = "1i3f4h3vnjxls8hdi6w2n2ksrgbs7brbzj65rvxginyxicykh857";
|
|
};
|
|
}
|