nixpkgs/pkgs/tools/graphics/exif/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

20 lines
554 B
Nix

{ stdenv, fetchurl, pkgconfig, libexif, popt, libintlOrEmpty }:
stdenv.mkDerivation rec {
name = "exif-0.6.21";
src = fetchurl {
url = "mirror://sourceforge/libexif/${name}.tar.bz2";
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libexif popt ] ++ libintlOrEmpty;
meta = {
homepage = http://libexif.sourceforge.net/;
description = "A utility to read and manipulate EXIF data in digital photographs";
platforms = stdenv.lib.platforms.unix;
};
}