fuse-archive: 1.10 -> 1.22

This commit is contained in:
icyrockcom
2026-05-30 20:21:49 -04:00
parent a145c8eac2
commit dd027618a0
+5 -5
View File
@@ -2,7 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fuse,
fuse3,
libarchive,
pkg-config,
boost,
@@ -10,13 +10,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "fuse-archive";
version = "1.10";
version = "1.22";
src = fetchFromGitHub {
owner = "google";
repo = "fuse-archive";
tag = "v${finalAttrs.version}";
hash = "sha256-Fta/IYKWsB4ZuPOWtGO6p6l03eoRXaO0lIGaCU3SRag=";
hash = "sha256-uE+22ONNnPqAi8zBV0v3qu3um2gNoX4/jNUA7E+UQOE=";
};
postPatch = ''
@@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [
fuse
fuse3
libarchive
boost
];
@@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: {
makeFlags = [ "prefix=${placeholder "out"}" ];
meta = {
inherit (fuse.meta) platforms;
inherit (fuse3.meta) platforms;
description = "Serve an archive or a compressed file as a read-only FUSE file system";
homepage = "https://github.com/google/fuse-archive";
changelog = "https://github.com/google/fuse-archive/releases/tag/v${finalAttrs.version}";