3
0
Fork 0
forked from mirrors/nixpkgs

Taglib: packaged a pre-1.7 snapshot

svn path=/nixpkgs/trunk/; revision=23979
This commit is contained in:
Evgeny Egorochkin 2010-09-28 09:33:28 +00:00
parent b2c54656ee
commit e143b506e9
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, fetchsvn, zlib, cmake}:
stdenv.mkDerivation {
name = "taglib-1.7a";
src = fetchsvn {
url = svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib;
rev = 1145554;
};
cmakeFlags = [ "-DWITH-ASF=ON" "-DWITH-MP4=ON" ];
buildInputs = [ zlib cmake ];
meta = {
homepage = http://developer.kde.org/~wheeler/taglib.html;
description = "A library for reading and editing the meta-data of several popular audio formats";
};
}

View file

@ -3807,6 +3807,8 @@ let
t1lib = callPackage ../development/libraries/t1lib { };
taglib = callPackage ../development/libraries/taglib { };
taglib17 = callPackage ../development/libraries/taglib/1.7.nix { };
taglib_extras = callPackage ../development/libraries/taglib-extras { };