summary refs log tree commit diff
path: root/pkgs/development/libraries/taglib/1.9.nix
blob: 1caa8a376fb1bc286bbf04c50f58c594f0d235d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchurl, zlib, cmake}:

stdenv.mkDerivation rec {
  name = "taglib-1.9.1";

  src = fetchurl {
    url = http://taglib.github.io/releases/taglib-1.9.1.tar.gz;
    sha256 = "06n7gnbcqa3r6c9gv00y0y1r48dyyazm6yj403i7ma0r2k6p3lvj";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ zlib ];

  meta = {
    homepage = http://developer.kde.org/~wheeler/taglib.html;
    repositories.git = git://github.com/taglib/taglib.git;

    description = "A library for reading and editing the meta-data of several popular audio formats";
    inherit (cmake.meta) platforms;
    maintainers = [ ];
  };
}