exiftool: 12.84 -> 13.00

https://github.com/exiftool/exiftool/compare/12.84..13.00
This commit is contained in:
Anthony ROUSSEL 2024-10-30 20:05:02 +01:00 committed by Anthony Roussel
parent 2e88dbad29
commit b41355ddf6

View File

@ -11,15 +11,19 @@
buildPerlPackage rec {
pname = "Image-ExifTool";
version = "12.84";
version = "13.00";
src = fetchurl {
url = "https://exiftool.org/Image-ExifTool-${version}.tar.gz";
hash = "sha256-sfSnx5bS7vI0KIhBOpB5VYzP6g8oi0rR7mUTxxNWEA0=";
hash = "sha256-SJV4jzT4NHZfhr5KWtWjJDP1ctdXFg7Ne2Eur17TfoQ=";
};
nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin shortenPerlShebang;
postPatch = ''
patchShebangs exiftool
'';
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
shortenPerlShebang $out/bin/exiftool
'';