taglib: update cmake flags

ASF and MP4 are enabled by default since 1.8 and not configurable in 1.9 and newer.

TagLib 1.11 switched to building static libraries by default.
This commit is contained in:
Orivej Desh 2017-12-13 13:51:01 +00:00
parent 8df38f6dda
commit 04fcbefd81
2 changed files with 4 additions and 4 deletions

View file

@ -8,10 +8,9 @@ stdenv.mkDerivation rec {
sha256 = "06n7gnbcqa3r6c9gv00y0y1r48dyyazm6yj403i7ma0r2k6p3lvj";
};
cmakeFlags = "-DWITH_ASF=ON -DWITH_MP4=ON";
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
nativeBuildInputs = [ cmake ];
meta = {
homepage = http://developer.kde.org/~wheeler/taglib.html;

View file

@ -8,10 +8,11 @@ stdenv.mkDerivation rec {
sha256 = "0ssjcdjv4qf9liph5ry1kngam1y7zp8fzr9xv4wzzrma22kabldn";
};
cmakeFlags = [ "-DWITH_ASF=ON" "-DWITH_MP4=ON" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
meta = with stdenv.lib; {
homepage = http://taglib.org/;