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

                         
                      
                      
 




                                                                                


                            
                                         
 



                                             
 





                               
                  


                                                    
                               
                               
                                         

     
                           
                                                 
                                           
                            
                      
                               

    
{stdenv, fetchurl, zlib, gperf}:

stdenv.mkDerivation rec {
  pname = "libid3tag";
  version = "0.15.1b";

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

  outputs = [ "out" "dev" ];
  setOutputFlags = false;

  propagatedBuildInputs = [ zlib gperf ];

  patches = [
    ./debian-patches.patch
    ./CVE-2017-11550-and-CVE-2017-11551.patch
  ];

  preConfigure = ''
    configureFlagsArray+=(
      --includedir=$dev/include
    )
  '';

  postInstall = ''
    mkdir -p $dev/lib/pkgconfig
    cp ${./id3tag.pc} $dev/lib/pkgconfig/id3tag.pc
    substituteInPlace $dev/lib/pkgconfig/id3tag.pc \
      --subst-var-by out $out \
      --subst-var-by dev $dev \
      --subst-var-by version "${version}"
  '';

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