Merge pull request #11947 from exi/taglib_extas-fix

taglib-extras: make taglib-extras work with taglib > 1.9
This commit is contained in:
Peter Simons
2015-12-27 23:26:46 +01:00
3 changed files with 15 additions and 0 deletions

View File

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