lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 31 lines 937 B view raw
1{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: 2 3with stdenv.lib; 4stdenv.mkDerivation rec { 5 p_name = "xfce4-cpufreq-plugin"; 6 ver_maj = "1.1"; 7 ver_min = "3"; 8 9 src = fetchurl { 10 url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; 11 sha256 = "0crd21l5cw0xgm6w7s049xa36k203yx7l56ssnah9nq1w73n58bl"; 12 }; 13 14 name = "${p_name}-${ver_maj}.${ver_min}"; 15 16 nativeBuildInputs = [ pkgconfig intltool ]; 17 18 buildInputs = [ libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; 19 20 enableParallelBuilding = true; 21 22 preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; 23 24 meta = { 25 homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; 26 description = "CPU Freq load plugin for Xfce panel"; 27 license = [ licenses.gpl2Plus ]; 28 platforms = platforms.linux; 29 maintainers = [ maintainers.AndersonTorres ]; 30 }; 31}