avfs: 1.2.0 -> 1.3.0 (#510688)

This commit is contained in:
Peder Bergebakken Sundt
2026-04-19 17:22:38 +00:00
committed by GitHub
2 changed files with 13 additions and 5 deletions
+6
View File
@@ -26754,6 +26754,12 @@
githubId = 156964;
name = "Thomas Boerger";
};
tbutter = {
email = "tbutter@gmail.com";
github = "tbutter";
githubId = 1336537;
name = "Thomas Butter";
};
tc-kaluza = {
github = "tc-kaluza";
githubId = 101565936;
+7 -5
View File
@@ -5,14 +5,15 @@
pkg-config,
fuse,
xz,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "avfs";
version = "1.2.0";
version = "1.3.0";
src = fetchurl {
url = "mirror://sourceforge/avf/${finalAttrs.version}/avfs-${finalAttrs.version}.tar.bz2";
sha256 = "sha256-olqOxDwe4XJiThpMec5mobkwhBzbVFtyXx7GS8q+iJw=";
sha256 = "sha256-B81p1MDH7QgOgP8EDZgChkBa04pEP9xS3Dle/vEcRLE=";
};
nativeBuildInputs = [ pkg-config ];
@@ -20,19 +21,20 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
fuse
xz
zlib
];
configureFlags = [
"--enable-library"
"--enable-fuse"
];
]
++ lib.optional stdenv.hostPlatform.isDarwin "--with-system-zlib";
meta = {
homepage = "https://avf.sourceforge.net/";
description = "Virtual filesystem that allows browsing of compressed files";
platforms = lib.platforms.unix;
license = lib.licenses.gpl2Only;
# The last successful Darwin Hydra build was in 2024
broken = stdenv.hostPlatform.isDarwin;
maintainers = with lib.maintainers; [ tbutter ];
};
})