e2372502d3
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.
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gnome2, libxfce4ui,
|
|
libxfce4util, xfce4panel, libnotify, lm_sensors, hddtemp, netcat-gnu
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${ver_maj}.${ver_min}";
|
|
pname = "xfce4-sensors-plugin";
|
|
ver_maj = "1.2";
|
|
ver_min = "6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/panel-plugins/${pname}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "1h0vpqxcziml3gwrbvd8xvy1mwh9mf2a68dvxsy03rs5pm1ghpi3";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
];
|
|
|
|
buildInputs = [
|
|
gnome2.gtk
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfce4panel
|
|
libnotify
|
|
lm_sensors
|
|
hddtemp
|
|
netcat-gnu
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-pathhddtemp=${hddtemp}/bin/hddtemp"
|
|
"--with-pathnetcat=${netcat-gnu}/bin/netcat"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "http://goodies.xfce.org/projects/panel-plugins/${pname}";
|
|
description = "A panel plug-in for different sensors using acpi, lm_sensors and hddtemp";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|