repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git]
/
pkgs
/
os-specific
/
linux
/
fuse
/
default.nix
blob
f692c2fb41c781b6b42c57207c6e000e0c62aa51
1
{ callPackage, util-linux }:
2
3
let
4
mkFuse = args: callPackage (import ./common.nix args) {
5
inherit util-linux;
6
};
7
in {
8
fuse_2 = mkFuse {
9
version = "2.9.9";
10
hash = "sha256-dgjM6M7xk5MHi9xPyCyvF0vq0KM8UCsEYBcMhkrdvfs=";
11
};
12
13
fuse_3 = mkFuse {
14
version = "3.16.2";
15
hash = "sha256-QO9s+IkR0rkqIYNqt2IYST6AVBkCr56jcuuz5nKJuA4=";
16
};
17
}