depot/pkgs/os-specific/linux/fuse/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

17 lines
358 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.16.2";
hash = "sha256-QO9s+IkR0rkqIYNqt2IYST6AVBkCr56jcuuz5nKJuA4=";
};
}