Unverified Commit ce523511 authored by Anthony Roussel's avatar Anthony Roussel
Browse files

exiftool: format with nixfmt-rfc-style

parent 2a83113c
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
{ 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 = {