Skip to content

Commit

Permalink
taglib: update cmake flags
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
orivej committed Dec 13, 2017
1 parent 8df38f6 commit 04fcbef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions pkgs/development/libraries/taglib/1.9.nix
Expand Up @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions pkgs/development/libraries/taglib/default.nix
Expand Up @@ -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/;
Expand Down

0 comments on commit 04fcbef

Please sign in to comment.