b5c2587698
This patch is directly taken from easytag. id3lib is not maintained any longer and the last release is 13 years old. This patch fixes some unicode issues.
18 lines
359 B
Nix
18 lines
359 B
Nix
{stdenv, fetchurl, zlib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "id3lib-3.8.3";
|
|
|
|
patches = [
|
|
./id3lib-3.8.3-gcc43-1.patch
|
|
./patch_id3lib_3.8.3_UTF16_writing_bug.diff
|
|
];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/id3lib/id3lib-3.8.3.tar.gz;
|
|
sha256 = "0yfhqwk0w8q2hyv1jib1008jvzmwlpsxvc8qjllhna6p1hycqj97";
|
|
};
|
|
}
|