Files

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

21 lines
370 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ 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=";
};
}