Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
699 B
Nix
37 lines
699 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
libiconv,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "id3lib";
|
|
version = "3.8.3";
|
|
|
|
patches = [
|
|
./id3lib-3.8.3-gcc43-1.patch
|
|
./patch_id3lib_3.8.3_UTF16_writing_bug.diff
|
|
];
|
|
|
|
buildInputs = [
|
|
libiconv
|
|
zlib
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/id3lib/${pname}-${version}.tar.gz";
|
|
sha256 = "0yfhqwk0w8q2hyv1jib1008jvzmwlpsxvc8qjllhna6p1hycqj97";
|
|
};
|
|
|
|
doCheck = false; # fails to compile
|
|
|
|
meta = with lib; {
|
|
description = "Library for reading, writing, and manipulating ID3v1 and ID3v2 tags";
|
|
homepage = "https://id3lib.sourceforge.net";
|
|
platforms = platforms.unix;
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|