nixpkgs/pkgs/tools/graphics/exif/default.nix

21 lines
568 B
Nix
Raw Normal View History

2018-03-14 19:15:06 +00:00
{ 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 ];
2018-03-14 19:15:06 +00:00
buildInputs = [ libexif popt libintl ];
2018-09-11 21:25:43 +00:00
meta = with stdenv.lib; {
homepage = https://libexif.github.io;
description = "A utility to read and manipulate EXIF data in digital photographs";
2018-09-11 21:25:43 +00:00
platforms = platforms.unix;
license = licenses.lgpl21;
};
}