nixpkgs/pkgs/development/libraries/id3lib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
678 B
Nix
Raw Normal View History

2021-11-10 01:00:10 +00:00
{ lib, stdenv, fetchurl, libiconv, zlib }:
2021-06-20 14:15:21 +00:00
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
];
2021-11-10 01:00:10 +00:00
buildInputs = [ libiconv zlib ];
src = fetchurl {
2021-06-20 14:15:21 +00:00
url = "mirror://sourceforge/id3lib/${pname}-${version}.tar.gz";
sha256 = "0yfhqwk0w8q2hyv1jib1008jvzmwlpsxvc8qjllhna6p1hycqj97";
};
doCheck = false; # fails to compile
meta = with lib; {
2018-10-12 21:33:05 +00:00
description = "Library for reading, writing, and manipulating ID3v1 and ID3v2 tags";
homepage = "https://id3lib.sourceforge.net";
2018-10-12 21:33:05 +00:00
platforms = platforms.unix;
license = licenses.lgpl2;
};
}