mount-zip: 1.0.15 -> 1.6 (#373348)

authored by

Gaétan Lepage and committed by
GitHub
95ff7274 74b68c6f

+23 -7
+23 -7
pkgs/by-name/mo/mount-zip/package.nix
··· 8 libzip, 9 pandoc, 10 pkg-config, 11 }: 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "mount-zip"; 15 - version = "1.0.15"; 16 17 src = fetchFromGitHub { 18 owner = "google"; 19 repo = "mount-zip"; 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-7S+mZ6jejD9wCqFYfJ0mE2jCKt77S64LEAgAIV2DPqA="; 22 }; 23 24 strictDeps = true; ··· 35 libzip 36 ]; 37 38 - makeFlags = [ "prefix=$(out)" ]; 39 40 - meta = with lib; { 41 description = "FUSE file system for ZIP archives"; 42 homepage = "https://github.com/google/mount-zip"; 43 longDescription = '' 44 mount-zip is a tool allowing to open, explore and extract ZIP archives. 45 46 This project is a fork of fuse-zip. 47 ''; 48 - license = licenses.gpl3; 49 - maintainers = with maintainers; [ arti5an ]; 50 - platforms = platforms.linux; 51 mainProgram = "mount-zip"; 52 }; 53 })
··· 8 libzip, 9 pandoc, 10 pkg-config, 11 + versionCheckHook, 12 + gitUpdater, 13 }: 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "mount-zip"; 17 + version = "1.6"; 18 19 src = fetchFromGitHub { 20 owner = "google"; 21 repo = "mount-zip"; 22 rev = "v${finalAttrs.version}"; 23 + hash = "sha256-akiZwuwrsj+62TmZEJamlvQ1rSyFA4hrH0TcZ8T97z4="; 24 }; 25 26 strictDeps = true; ··· 37 libzip 38 ]; 39 40 + makeFlags = [ "PREFIX=$(out)" ]; 41 + 42 + nativeInstallCheckInputs = [ 43 + versionCheckHook 44 + ]; 45 + versionCheckProgramArg = [ "--version" ]; 46 + doInstallCheck = true; 47 48 + passthru = { 49 + updateScript = gitUpdater { rev-prefix = "v"; }; 50 + }; 51 + 52 + meta = { 53 description = "FUSE file system for ZIP archives"; 54 homepage = "https://github.com/google/mount-zip"; 55 + changelog = "https://github.com/google/mount-zip/releases/tag/v${finalAttrs.version}"; 56 longDescription = '' 57 mount-zip is a tool allowing to open, explore and extract ZIP archives. 58 59 This project is a fork of fuse-zip. 60 ''; 61 + license = lib.licenses.gpl3; 62 + maintainers = with lib.maintainers; [ 63 + arti5an 64 + progrm_jarvis 65 + ]; 66 + platforms = lib.platforms.linux; 67 mainProgram = "mount-zip"; 68 }; 69 })