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:50:33 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-10 23:54:00 +0200
commit109fdfe34fd77687946d43e740ef24948e574bab (patch)
tree9a641a91ce74d170e0825b12f78c12339ddcbd91 /pkgs/os-specific/linux/conky
parent2b7e88e9f5c867356df9976c288b40b36c74b3c5 (diff)
downloadnixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.tar
nixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.tar.gz
nixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.tar.bz2
nixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.tar.lz
nixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.tar.xz
nixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.tar.zst
nixpkgs-109fdfe34fd77687946d43e740ef24948e574bab.zip
conky: Enable weather plugins.
Those plugins do not require additional dependencis or at least no dependencies
we don't actually use, so let's build them aswell. And after all, If you work in
your hermetically sealed environment, you surely want to know what's going on
outside.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/os-specific/linux/conky')
-rw-r--r--pkgs/os-specific/linux/conky/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix
index a75df8b531c..086b792b4cd 100644
--- a/pkgs/os-specific/linux/conky/default.nix
+++ b/pkgs/os-specific/linux/conky/default.nix
@@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
   buildInputs = [ pkgconfig libxml2 curl wirelesstools glib openssl ncurses ];
   configureFlags =
     (map (x: "--disable-${x}") [ "x11" "xdamage" "own-window" "xft" "lua" ])
-    ++ (map (x: "--enable-${x}") [ "mpd" "double-buffer" "wlan" "rss" ]);
+    ++ (map (x: "--enable-${x}") [ "mpd" "double-buffer" "wlan" "rss"
+                                   "weather-metar" "weather-xoap" ]);
 
   meta = {
     homepage = http://conky.sourceforge.net/;