summary refs log tree commit diff
path: root/pkgs/os-specific/linux/conky
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-09-10 23:46:32 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-10 23:54:00 +0200
commit2b7e88e9f5c867356df9976c288b40b36c74b3c5 (patch)
treedce908c44279d0f0a988b4c662c30c4230f1f60d /pkgs/os-specific/linux/conky
parentb0ace9fa110fbd68bd7be9bc58f5168b66ae3707 (diff)
downloadnixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.tar
nixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.tar.gz
nixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.tar.bz2
nixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.tar.lz
nixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.tar.xz
nixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.tar.zst
nixlib-2b7e88e9f5c867356df9976c288b40b36c74b3c5.zip
conky: Re-enable support for ncurses.
Build breakage with enabled ncurses is fixed in 1.9.0 now, so we can safely
re-enable it.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/os-specific/linux/conky')
-rw-r--r--pkgs/os-specific/linux/conky/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix
index 381cc44e36f3..a75df8b531cf 100644
--- a/pkgs/os-specific/linux/conky/default.nix
+++ b/pkgs/os-specific/linux/conky/default.nix
@@ -1,4 +1,5 @@
-{stdenv, fetchurl, pkgconfig, libxml2, curl, wirelesstools, glib, openssl}:
+{ stdenv, fetchurl, pkgconfig, libxml2, curl, wirelesstools, glib, openssl
+, ncurses }:
 
 stdenv.mkDerivation rec {
   name = "conky-1.9.0";
@@ -10,9 +11,9 @@ stdenv.mkDerivation rec {
 
   patches = [ ./stdbool.patch ];
 
-  buildInputs = [ pkgconfig libxml2 curl wirelesstools glib openssl ];
+  buildInputs = [ pkgconfig libxml2 curl wirelesstools glib openssl ncurses ];
   configureFlags =
-    (map (x: "--disable-${x}") [ "x11" "xdamage" "own-window" "xft" "lua" "ncurses" ])
+    (map (x: "--disable-${x}") [ "x11" "xdamage" "own-window" "xft" "lua" ])
     ++ (map (x: "--enable-${x}") [ "mpd" "double-buffer" "wlan" "rss" ]);
 
   meta = {