2025-08-09 05:57:43 +00:00

70 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fuse3,
boost,
icu,
libzip,
pandoc,
pkg-config,
versionCheckHook,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mount-zip";
version = "1.10";
src = fetchFromGitHub {
owner = "google";
repo = "mount-zip";
rev = "v${finalAttrs.version}";
hash = "sha256-d6cjqsqIYFPuAWKxjlLXCWNKT33xbMW8gLriZWj0SSc=";
};
strictDeps = true;
nativeBuildInputs = [
pandoc
pkg-config
];
buildInputs = [
boost
fuse3
icu
libzip
];
makeFlags = [ "PREFIX=$(out)" ];
nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = "--version";
doInstallCheck = true;
passthru = {
updateScript = gitUpdater { rev-prefix = "v"; };
};
meta = {
description = "FUSE file system for ZIP archives";
homepage = "https://github.com/google/mount-zip";
changelog = "https://github.com/google/mount-zip/releases/tag/v${finalAttrs.version}";
longDescription = ''
mount-zip is a tool allowing to open, explore and extract ZIP archives.
This project is a fork of fuse-zip.
'';
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [
arti5an
progrm_jarvis
];
platforms = lib.platforms.linux;
mainProgram = "mount-zip";
};
})