From c6d7c043f7efa26bb21b8552b0b91fa0a384353f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 21 Jul 2009 20:42:04 +0000 Subject: [PATCH] Add Perl-Image-ExifTool, with the exiftool(1) command-line tool. svn path=/nixpkgs/trunk/; revision=16437 --- pkgs/top-level/perl-packages.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index b26e2c1580af..1851f79cf7cc 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1263,6 +1263,35 @@ rec { doCheck = false; /* attempts a network connection to localhost */ }; + ImageExifTool = buildPerlPackage rec { + name = "Image-ExifTool-7.83"; + + src = fetchurl { + url = "http://www.sno.phy.queensu.ca/~phil/exiftool/${name}.tar.gz"; + sha256 = "1g3ah646w242649sy77wjff3ykjclihv8zvbs0ch1nwfbqprrbl2"; + }; + + meta = { + description = "ExifTool, a tool to read, write and edit EXIF meta information"; + + longDescription = '' + ExifTool is a platform-independent Perl library plus a command-line + application for reading, writing and editing meta information in + image, audio and video files. ExifTool supports many different types + of metadata including EXIF, GPS, IPTC, XMP, JFIF, GeoTIFF, ICC + Profile, Photoshop IRB, FlashPix, AFCP and ID3, as well as the maker + notes of many digital cameras by Canon, Casio, FujiFilm, HP, + JVC/Victor, Kodak, Leaf, Minolta/Konica-Minolta, Nikon, + Olympus/Epson, Panasonic/Leica, Pentax/Asahi, Ricoh, Sanyo, + Sigma/Foveon and Sony. + ''; + + licenses = [ "GPLv1+" "Artistic" ]; + + maintainers = [ stdenv.lib.maintainers.ludo ]; + }; + }; + JSON = buildPerlPackage rec { name = "JSON-2.15"; src = fetchurl {