mount-zip: 1.0.15 -> 1.6

This commit is contained in:
Petr Portnov 2025-01-13 05:12:33 +03:00
parent 19f32b1d85
commit 9339f7a20f
No known key found for this signature in database
GPG Key ID: 11922217F8288484

View File

@ -12,13 +12,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "mount-zip"; pname = "mount-zip";
version = "1.0.15"; version = "1.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "google"; owner = "google";
repo = "mount-zip"; repo = "mount-zip";
rev = "v${finalAttrs.version}"; rev = "v${finalAttrs.version}";
hash = "sha256-7S+mZ6jejD9wCqFYfJ0mE2jCKt77S64LEAgAIV2DPqA="; hash = "sha256-akiZwuwrsj+62TmZEJamlvQ1rSyFA4hrH0TcZ8T97z4=";
}; };
strictDeps = true; strictDeps = true;
@ -35,22 +35,23 @@ stdenv.mkDerivation (finalAttrs: {
libzip libzip
]; ];
makeFlags = [ "prefix=$(out)" ]; makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; { meta = {
description = "FUSE file system for ZIP archives"; description = "FUSE file system for ZIP archives";
homepage = "https://github.com/google/mount-zip"; homepage = "https://github.com/google/mount-zip";
changelog = "https://github.com/google/mount-zip/releases/tag/v${finalAttrs.version}";
longDescription = '' longDescription = ''
mount-zip is a tool allowing to open, explore and extract ZIP archives. mount-zip is a tool allowing to open, explore and extract ZIP archives.
This project is a fork of fuse-zip. This project is a fork of fuse-zip.
''; '';
license = licenses.gpl3; license = lib.licenses.gpl3;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
arti5an arti5an
progrm_jarvis progrm_jarvis
]; ];
platforms = platforms.linux; platforms = lib.platforms.linux;
mainProgram = "mount-zip"; mainProgram = "mount-zip";
}; };
}) })