clementineFree: fix gcc5 build

Uses gcc switches that are no longer valid. Also strip
-Werror for good measure. See
https://hydra.nixos.org/build/33277865/nixlog/1/raw

+6
+6
pkgs/applications/audio/clementine/default.nix
··· 50 50 name = "clementine-free-${version}"; 51 51 inherit patches src buildInputs; 52 52 enableParallelBuilding = true; 53 + postPatch = '' 54 + sed -i src/CMakeLists.txt \ 55 + -e 's,-Werror,,g' \ 56 + -e 's,-Wno-unknown-warning-option,,g' \ 57 + -e 's,-Wno-unused-private-field,,g' 58 + ''; 53 59 meta = with stdenv.lib; { 54 60 homepage = "http://www.clementine-player.org"; 55 61 description = "A multiplatform music player";