mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
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:
parent
8df38f6dda
commit
04fcbefd81
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue