nixpkgs/pkgs/tools/graphics/exif/default.nix
Eelco Dolstra 454707da23 * catamaran.labs.cs.uu.nl -> nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=3660
2005-08-22 08:39:27 +00:00

13 lines
271 B
Nix

{stdenv, fetchurl, pkgconfig, libexif, popt}:
stdenv.mkDerivation {
name = "exif-0.6.9";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/exif-0.6.9.tar.gz;
md5 = "555029098386fa677c461eb249d852d7";
};
buildInputs = [pkgconfig libexif popt];
}