at master 20 lines 370 B view raw
1{ callPackage, util-linux }: 2 3let 4 mkFuse = 5 args: 6 callPackage (import ./common.nix args) { 7 inherit util-linux; 8 }; 9in 10{ 11 fuse_2 = mkFuse { 12 version = "2.9.9"; 13 hash = "sha256-dgjM6M7xk5MHi9xPyCyvF0vq0KM8UCsEYBcMhkrdvfs="; 14 }; 15 16 fuse_3 = mkFuse { 17 version = "3.17.4"; 18 hash = "sha256-G3+cBp8q8S8oLIcgWp0p+TAtzqXlKYbRSY/5Y3L7QO4="; 19 }; 20}