Merge pull request #309847 from anthonyroussel/update-exiftool

exiftool: 12.82 -> 12.84

authored by Stig and committed by GitHub 60a76c25 103ecdff

+13 -13
+13 -13
pkgs/development/perl-modules/ImageExifTool/default.nix
··· 1 - { lib 2 - , stdenv 3 - , buildPerlPackage 4 - , exiftool 5 - , fetchurl 6 - , gitUpdater 7 - , shortenPerlShebang 8 - , testers 1 + { 2 + buildPerlPackage, 3 + exiftool, 4 + fetchurl, 5 + gitUpdater, 6 + lib, 7 + shortenPerlShebang, 8 + stdenv, 9 + testers, 9 10 }: 10 11 11 12 buildPerlPackage rec { 12 13 pname = "Image-ExifTool"; 13 - version = "12.82"; 14 + version = "12.84"; 14 15 15 16 src = fetchurl { 16 17 url = "https://exiftool.org/Image-ExifTool-${version}.tar.gz"; 17 - hash = "sha256-1MfWz0AR+SaM2Ar7gAfLs38OJhOnP4cRekpe1uSjDD4="; 18 + hash = "sha256-sfSnx5bS7vI0KIhBOpB5VYzP6g8oi0rR7mUTxxNWEA0="; 18 19 }; 19 20 20 21 nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang; 22 + 21 23 postInstall = lib.optionalString stdenv.isDarwin '' 22 24 shortenPerlShebang $out/bin/exiftool 23 25 ''; ··· 28 30 command = "${lib.getExe exiftool} -ver"; 29 31 package = exiftool; 30 32 }; 31 - updateScript = gitUpdater { 32 - url = "https://github.com/exiftool/exiftool.git"; 33 - }; 33 + updateScript = gitUpdater { url = "https://github.com/exiftool/exiftool.git"; }; 34 34 }; 35 35 36 36 meta = {