about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2016-10-30 02:52:47 +0200
committersternenseemann <git@lukasepple.de>2016-10-30 15:06:04 +0100
commite2372502d3d0503711ea792a74292373286e5c8f (patch)
treef213e1c0c10b379562acd31f7726667f5ed4114b /pkgs/desktops
parent750af04badf015dfd1d9b2ec181e959b49927a42 (diff)
netcat: make netcat-openbsd the default netcat (#19411)
The motivation for this change is the following: As gnu-netcat,
e. g. does not support ipv6, it is not suitable as default netcat.

This commit also fixes all obvious build issues caused by this change.
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix
index 770f344902353..3314d313ad2c1 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, intltool, gnome2, libxfce4ui,
-  libxfce4util, xfce4panel, libnotify, lm_sensors, hddtemp, netcat
+  libxfce4util, xfce4panel, libnotify, lm_sensors, hddtemp, netcat-gnu
 }:
 
 stdenv.mkDerivation rec {
@@ -26,14 +26,14 @@ stdenv.mkDerivation rec {
     libnotify
     lm_sensors
     hddtemp
-    netcat
+    netcat-gnu
    ];
 
   enableParallelBuilding = true;
 
   configureFlags = [
     "--with-pathhddtemp=${hddtemp}/bin/hddtemp"
-    "--with-pathnetcat=${netcat}/bin/netcat"
+    "--with-pathnetcat=${netcat-gnu}/bin/netcat"
   ];
 
   meta = {