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







                                                                                
                                         
 


                                       
                                                 
                                           

                                           

    
{stdenv, fetchurl, zlib, gperf}:

stdenv.mkDerivation {
  name = "libid3tag-0.15.1b";
  src = fetchurl {
    url = mirror://sourceforge/mad/libid3tag-0.15.1b.tar.gz;
    sha256 = "63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151";
  };

  propagatedBuildInputs = [ zlib gperf ];

  patches = [ ./debian-patches.patch ];

  meta = with stdenv.lib; {
    description = "ID3 tag manipulation library";
    homepage = http://mad.sourceforge.net/;
    license = licenses.gpl2;
    maintainers = [ maintainers.fuuzetsu ];
  };
}