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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
358 B
Nix
Raw Normal View History

2020-11-24 15:29:28 +00:00
{ callPackage, util-linux }:
let
mkFuse = args: callPackage (import ./common.nix args) {
2020-11-24 15:29:28 +00:00
inherit util-linux;
};
in {
fuse_2 = mkFuse {
2019-01-04 17:35:40 +00:00
version = "2.9.9";
hash = "sha256-dgjM6M7xk5MHi9xPyCyvF0vq0KM8UCsEYBcMhkrdvfs=";
};
fuse_3 = mkFuse {
version = "3.16.2";
hash = "sha256-QO9s+IkR0rkqIYNqt2IYST6AVBkCr56jcuuz5nKJuA4=";
};
}