lol
1{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
2
3with stdenv.lib;
4stdenv.mkDerivation rec {
5 p_name = "xfce4-genmon-plugin";
6 ver_maj = "3.4";
7 ver_min = "0";
8
9 src = fetchurl {
10 url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
11 sha256 = "11q3g6lmgz3d5lyh6614mxkd9cblfdyf9jgki7f26mn895xk79dh";
12 };
13 name = "${p_name}-${ver_maj}.${ver_min}";
14
15 buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
16
17 meta = {
18 homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
19 description = "Cyclically spawns a command and captures its output";
20 platforms = platforms.linux;
21 maintainers = [ maintainers.AndersonTorres ];
22 };
23}