mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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
This commit is contained in:
parent
6206ceb600
commit
72bcff71fe
@ -50,6 +50,12 @@ let
|
||||
name = "clementine-free-${version}";
|
||||
inherit patches src buildInputs;
|
||||
enableParallelBuilding = true;
|
||||
postPatch = ''
|
||||
sed -i src/CMakeLists.txt \
|
||||
-e 's,-Werror,,g' \
|
||||
-e 's,-Wno-unknown-warning-option,,g' \
|
||||
-e 's,-Wno-unused-private-field,,g'
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.clementine-player.org";
|
||||
description = "A multiplatform music player";
|
||||
|
Loading…
Reference in New Issue
Block a user