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 9 }: 10 11 buildPerlPackage rec { ··· 18 }; 19 20 nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang; 21 postInstall = lib.optionalString stdenv.isDarwin '' 22 shortenPerlShebang $out/bin/exiftool 23 ''; ··· 28 command = "${lib.getExe exiftool} -ver"; 29 package = exiftool; 30 }; 31 - updateScript = gitUpdater { 32 - url = "https://github.com/exiftool/exiftool.git"; 33 - }; 34 }; 35 36 meta = {
··· 1 + { 2 + buildPerlPackage, 3 + exiftool, 4 + fetchurl, 5 + gitUpdater, 6 + lib, 7 + shortenPerlShebang, 8 + stdenv, 9 + testers, 10 }: 11 12 buildPerlPackage rec { ··· 19 }; 20 21 nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang; 22 + 23 postInstall = lib.optionalString stdenv.isDarwin '' 24 shortenPerlShebang $out/bin/exiftool 25 ''; ··· 30 command = "${lib.getExe exiftool} -ver"; 31 package = exiftool; 32 }; 33 + updateScript = gitUpdater { url = "https://github.com/exiftool/exiftool.git"; }; 34 }; 35 36 meta = {