summary refs log tree commit diff
path: root/pkgs/tools/graphics/exif/default.nix
blob: d6ec68ba3cc5bd18ceb7fb30fab0ee1ecce1f152 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, libexif, popt, libintl }:

stdenv.mkDerivation rec {
  name = "exif-0.6.21";

  src = fetchurl {
    url = "mirror://sourceforge/libexif/${name}.tar.bz2";
    sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libexif popt libintl ];

  meta = {
    homepage = http://libexif.sourceforge.net/;
    description = "A utility to read and manipulate EXIF data in digital photographs";
    platforms = stdenv.lib.platforms.unix;
  };
}