Add comments identifying workarounds

This commit is contained in:
Reno Reckling 2015-12-26 18:42:03 +01:00
parent a25de32033
commit e94139f8c8
3 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core
]; ];
# This is already fixed upstream, will be release in 2.9
preConfigure = '' preConfigure = ''
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
''; '';

View File

@ -93,6 +93,7 @@ stdenv.mkDerivation rec {
"-DENABLE_UDISKS2=ON" "-DENABLE_UDISKS2=ON"
]; ];
# This is already fixed upstream but not released yet. Maybe in version 2.
preConfigure = '' preConfigure = ''
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake
''; '';

View File

@ -8,6 +8,8 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ taglib ]; buildInputs = [ taglib ];
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
# Workaround for upstream bug https://bugs.kde.org/show_bug.cgi?id=357181
preConfigure = '' preConfigure = ''
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
''; '';