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

21 lines
370 B
Nix

{ callPackage, util-linux }:
let
mkFuse =
args:
callPackage (import ./common.nix args) {
inherit util-linux;
};
in
{
fuse_2 = mkFuse {
version = "2.9.9";
hash = "sha256-dgjM6M7xk5MHi9xPyCyvF0vq0KM8UCsEYBcMhkrdvfs=";
};
fuse_3 = mkFuse {
version = "3.17.4";
hash = "sha256-G3+cBp8q8S8oLIcgWp0p+TAtzqXlKYbRSY/5Y3L7QO4=";
};
}