summary refs log tree commit diff
path: root/pkgs/development/libraries/libid3tag/default.nix
blob: 3b701b703c1a84941bad0b68bd113b810248c8dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, zlib}:

stdenv.mkDerivation {
  name = "libid3tag-0.15.1b";
  src = fetchurl {
    url = mirror://sourceforge/mad/libid3tag-0.15.1b.tar.gz;
    sha256 = "63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151";
  };

  propagatedBuildInputs = [zlib];

  meta = {
    description = "ID3 tag manipulation library";
    homepage = http://mad.sourceforge.net/;
    license = "GPL";
  };
}