about summary refs log tree commit diff
path: root/pkgs/development/libraries/libexif/default.nix
blob: 971597fd6fcd109474fdbdaea056e1699d98ff59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{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];
}