exiftool: format with nixfmt-rfc-style

+11 -11
+11 -11
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 { ··· 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 = {