tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
exiftool: format with nixfmt-rfc-style
Anthony Roussel
2 years ago
ce523511
2a83113c
+11
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
perl-modules
ImageExifTool
default.nix
+11
-11
pkgs/development/perl-modules/ImageExifTool/default.nix
···
1
1
-
{ lib
2
2
-
, stdenv
3
3
-
, buildPerlPackage
4
4
-
, exiftool
5
5
-
, fetchurl
6
6
-
, gitUpdater
7
7
-
, shortenPerlShebang
8
8
-
, testers
1
1
+
{
2
2
+
buildPerlPackage,
3
3
+
exiftool,
4
4
+
fetchurl,
5
5
+
gitUpdater,
6
6
+
lib,
7
7
+
shortenPerlShebang,
8
8
+
stdenv,
9
9
+
testers,
9
10
}:
10
11
11
12
buildPerlPackage rec {
···
18
19
};
19
20
20
21
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
22
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
31
-
updateScript = gitUpdater {
32
32
-
url = "https://github.com/exiftool/exiftool.git";
33
33
-
};
33
33
+
updateScript = gitUpdater { url = "https://github.com/exiftool/exiftool.git"; };
34
34
};
35
35
36
36
meta = {