summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-05-13 19:45:49 -0500
committerAustin Seipp <aseipp@pobox.com>2014-05-13 19:45:49 -0500
commit564e685d3526e70f5f503c7e41cf7c78db4b7372 (patch)
tree73e306fbb80597e3a9f397c120e36d100a88445c /pkgs/tools/networking
parent21cb0c9bbbc936262a04b94267dd10c9918dd151 (diff)
parent31a0844f794512336d1795c6f99ed697a5256327 (diff)
downloadnixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.tar
nixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.tar.gz
nixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.tar.bz2
nixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.tar.lz
nixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.tar.xz
nixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.tar.zst
nixlib-564e685d3526e70f5f503c7e41cf7c78db4b7372.zip
Merge pull request #2609 from CodeBlock/wicd-curses
wicd: enable curses, urwid is packaged now
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/wicd/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix
index 524c93d218a1..e0537c8e1fa7 100644
--- a/pkgs/tools/networking/wicd/default.nix
+++ b/pkgs/tools/networking/wicd/default.nix
@@ -2,9 +2,6 @@
  wpa_supplicant, dhcp, dhcpcd, wirelesstools, nettools, openresolv, iproute, iputils,
  pythonPackages, locale ? "C" }:
 
-# Wicd has a ncurses interface that we do not build because it depends
-# on urwid which has not been packaged at this time (2009-12-27).
-
 stdenv.mkDerivation rec {
   name = "wicd-${version}";
   version = "1.7.2.4";
@@ -14,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "15ywgh60xzmp5z8l1kzics7yi95isrjg1paz42dvp7dlpdfzpzfw";
   };
 
-  buildInputs = [ python pythonPackages.Babel ];
+  buildInputs = [ python pythonPackages.Babel pythonPackages.urwid ];
 
   patches = [
     ./no-var-install.patch
@@ -83,7 +80,6 @@ stdenv.mkDerivation rec {
     --no-install-kde \
     --no-install-acpi \
     --no-install-pmutils \
-    --no-install-ncurses \
   '';
 
   installPhase = ''