a20bd6bfa9
svn path=/nixpkgs/branches/stdenv-updates/; revision=10457
18 lines
391 B
Nix
18 lines
391 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libexif-0.6.16";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libexif/${name}.tar.bz2";
|
|
sha256 = "0hxc3aik3sn8xq4mbmxxb8ycx2lwffmhi5xvz0zjffhfwkaqas6v";
|
|
};
|
|
|
|
configureFlags = "--enable-shared --disable-static";
|
|
|
|
meta = {
|
|
homepage = http://libexif.sourceforge.net;
|
|
description = "The EXIF parsing library";
|
|
};
|
|
}
|