blob: 41c8e32a27ec58caf054d0cf9c9bbfa8f7cfd6fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ 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=";
};
}
|