1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

cantata: fix taglib search

This commit is contained in:
Reno Reckling 2015-12-26 18:00:32 +01:00
parent 4400f01c0b
commit a25de32033

View file

@ -93,6 +93,10 @@ stdenv.mkDerivation rec {
"-DENABLE_UDISKS2=ON"
];
preConfigure = ''
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake
'';
postInstall = stdenv.lib.optionalString withQt5 ''
wrapQtProgram "$out/bin/cantata"
'';