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

authored by

Arseniy Alekseyev and committed by
Evgeny Egorochkin
eba178ad 35229f0c

+3 -1
+3 -1
pkgs/development/libraries/id3lib/default.nix
··· 1 - {stdenv, fetchurl}: 2 3 stdenv.mkDerivation { 4 name = "id3lib-3.8.3"; 5 6 patches = [ ./id3lib-3.8.3-gcc43-1.patch ]; 7 8 src = fetchurl { 9 url = mirror://sourceforge/id3lib/id3lib-3.8.3.tar.gz;
··· 1 + {stdenv, fetchurl, zlib}: 2 3 stdenv.mkDerivation { 4 name = "id3lib-3.8.3"; 5 6 patches = [ ./id3lib-3.8.3-gcc43-1.patch ]; 7 + 8 + buildInputs = [ zlib ]; 9 10 src = fetchurl { 11 url = mirror://sourceforge/id3lib/id3lib-3.8.3.tar.gz;