summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2016-11-02 19:44:29 -0400
committerGitHub <noreply@github.com>2016-11-02 19:44:29 -0400
commit04b22dd935ee3359adaef20186db50017dbe3975 (patch)
tree01e57cba5550a8dc45bd068e8d833743ec2e8476 /pkgs/desktops
parent9e150c92d4de210f84bb5bd80630cc07a12f40be (diff)
parentbbe9159725d73a77922953b3cd17c862451ba59a (diff)
downloadnixlib-04b22dd935ee3359adaef20186db50017dbe3975.tar
nixlib-04b22dd935ee3359adaef20186db50017dbe3975.tar.gz
nixlib-04b22dd935ee3359adaef20186db50017dbe3975.tar.bz2
nixlib-04b22dd935ee3359adaef20186db50017dbe3975.tar.lz
nixlib-04b22dd935ee3359adaef20186db50017dbe3975.tar.xz
nixlib-04b22dd935ee3359adaef20186db50017dbe3975.tar.zst
nixlib-04b22dd935ee3359adaef20186db50017dbe3975.zip
Merge pull request #19982 from sternenseemann/netcat
Make netcat-openbsd the default netcat
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 770f34490235..3314d313ad2c 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 = {