Changes: - https://github.com/libfuse/libfuse/releases/tag/fuse-3.17.3 - https://github.com/libfuse/libfuse/releases/tag/fuse-3.17.4
21 lines
370 B
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=";
|
|
};
|
|
}
|