summary refs log blame commit diff
path: root/pkgs/development/libraries/exiv2/default.nix
blob: 22b6cf242c80dfd4d711799e22510fd2df1fd5f7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                
 
                         
                      


                                                
                                                                    

    
                                       
  

                                                                      



                                                                                

                                                 
    
 
{stdenv, fetchurl, zlib, expat}:

stdenv.mkDerivation rec {
  name = "exiv2-0.24";
  
  src = fetchurl {
    url = "http://www.exiv2.org/${name}.tar.gz";
    sha256 = "13pgvz14kyapxl89pxjaq3274k56d5lzfckpg1g9z7gvqzk4797l";
  };
  
  propagatedBuildInputs = [zlib expat];
  
# configure script finds zlib&expat but it thinks that they're in /usr
  configureFlags = "--with-zlib=${zlib} --with-expat=${expat}";

  meta = {
    homepage = http://www.exiv2.org/;
    description = "A library and command-line utility to manage image metadata";
    maintainers = [stdenv.lib.maintainers.urkud];
    platforms = stdenv.lib.platforms.all;
  };
}