Updated id3lib to avoid building its own zlib, fixes #867

This commit is contained in:
Arseniy Alekseyev 2013-08-27 03:56:31 +01:00 committed by Evgeny Egorochkin
parent 35229f0cf4
commit eba178ad52

View file

@ -1,9 +1,11 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, zlib}:
stdenv.mkDerivation {
name = "id3lib-3.8.3";
patches = [ ./id3lib-3.8.3-gcc43-1.patch ];
buildInputs = [ zlib ];
src = fetchurl {
url = mirror://sourceforge/id3lib/id3lib-3.8.3.tar.gz;