1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-16 18:15:17 +00:00

Re-enable RSS in AppImage, also enable in Nix flake

The behaviour of the RSS flag changed in 4936c74, previously it would
enable cURL support when it was switched on, but now you must pass both
BUILD_RSS=ON and BUILD_CURL=ON to CMake at configure time.

This fixes #1861.
This commit is contained in:
Brenden Matthews 2024-04-25 14:20:59 -04:00
parent 71c4e6ea52
commit e2147bd5d7
2 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,7 @@ cmake -G Ninja \
-DBUILD_NVIDIA=ON \
-DBUILD_PULSEAUDIO=ON \
-DBUILD_RSS=ON \
-DBUILD_CURL=ON \
-DBUILD_WAYLAND=ON \
-DBUILD_WLAN=ON \
-DBUILD_X11=ON \

View File

@ -56,6 +56,8 @@
"-DBUILD_LUA_CAIRO=ON"
"-DBUILD_LUA_IMLIB2=ON"
"-DBUILD_LUA_RSVG=ON"
"-DBUILD_RSS=ON"
"-DBUILD_CURL=ON"
];
nativeBuildInputs = [
clang_16
@ -69,10 +71,12 @@
buildInputs =
[
cairo
curl
freetype
gettext
imlib2
librsvg
libxml2
llvmPackages_16.libcxx
llvmPackages_16.libcxxabi
lua5_4