exiftool: format with nixfmt-rfc-style

This commit is contained in:
Anthony Roussel 2024-05-07 15:58:34 +02:00
parent 2a83113cc0
commit ce523511ce
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 11 additions and 11 deletions

View File

@ -1,11 +1,12 @@
{ lib
, stdenv
, buildPerlPackage
, exiftool
, fetchurl
, gitUpdater
, shortenPerlShebang
, testers
{
buildPerlPackage,
exiftool,
fetchurl,
gitUpdater,
lib,
shortenPerlShebang,
stdenv,
testers,
}:
buildPerlPackage rec {
@ -18,6 +19,7 @@ buildPerlPackage rec {
};
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
postInstall = lib.optionalString stdenv.isDarwin ''
shortenPerlShebang $out/bin/exiftool
'';
@ -28,9 +30,7 @@ buildPerlPackage rec {
command = "${lib.getExe exiftool} -ver";
package = exiftool;
};
updateScript = gitUpdater {
url = "https://github.com/exiftool/exiftool.git";
};
updateScript = gitUpdater { url = "https://github.com/exiftool/exiftool.git"; };
};
meta = {