mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
15 lines
282 B
Nix
15 lines
282 B
Nix
{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;
|
|
md5 = "19f27ddd2dda4b2d26a559a4f0f402a7";
|
|
};
|
|
}
|