nixpkgs/pkgs/development/libraries/libexif/default.nix
Eelco Dolstra f6e91bc9c9 * Merge r2396.
svn path=/nixpkgs/trunk/; revision=2397
2005-03-14 09:22:26 +00:00

13 lines
252 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libexif-0.6.11";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libexif-0.6.11.tar.bz2;
md5 = "211996a336f1b1a06def5a6d5c94284e";
};
patches = [./no-po.patch];
}