mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
conky: fix compilation with gcc-7
This commit is contained in:
parent
8627859793
commit
141644e752
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, cmake
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, cmake
|
||||
|
||||
# dependencies
|
||||
, glib, libXinerama
|
||||
@ -73,6 +73,16 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "15j8h251v9jpdg6h6wn1vb45pkk806pf9s5n3rdrps9r185w8hn8";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Patch to fix compilation on gcc-7 from conky PR
|
||||
# https://github.com/brndnmtthws/conky/pull/402
|
||||
(fetchpatch {
|
||||
name = "gcc7.patch";
|
||||
url = "https://github.com/brndnmtthws/conky/commit/6140122b82d50acc333e5d2a813cc1933ecc6d21.patch";
|
||||
sha256 = "1fblfj1w2kc0gshc2pq9lc1pxxsgmgh8byb1xs2v6amx15kj11k7";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e '/include.*CheckIncludeFile)/i include(CheckIncludeFiles)' \
|
||||
cmake/ConkyPlatformChecks.cmake
|
||||
|
Loading…
Reference in New Issue
Block a user