summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2015-01-17 00:46:34 -0200
committerAndersonTorres <torres.anderson.85@gmail.com>2015-01-17 21:53:23 -0200
commit5d853f7dca02d26de7a1acc49c437d4ba6b5add7 (patch)
tree9259e027c8de839f8dcccd2f5281a0234dd180bf /pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix
parent2594999cede5b0ceb2991d74c42a5dde2514dfbb (diff)
downloadnixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.tar
nixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.tar.gz
nixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.tar.bz2
nixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.tar.lz
nixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.tar.xz
nixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.tar.zst
nixlib-5d853f7dca02d26de7a1acc49c437d4ba6b5add7.zip
Adding some plugins to XFCE4
Here is a list:
Battery      (1.0.5)
Clipman      (1.2.6)
Cpufreq      (1.0.0)
Cpugraph     (1.0.5)
Datetime     (0.6.2)
Dict         (0.3.0)
Embed        (1.4.1)
Eyes         (4.4.3)
Fsguard      (1.0.1)
Genmon       (3.4.0)
Netload      (1.2.4)
Notes        (1.7.7)
Systemload   (1.1.2)
Verve        (1.0.0)
Xkb          (0.5.6)
Diffstat (limited to 'pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix')
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix
new file mode 100644
index 000000000000..e73ad9256308
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, pcre
+, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+  p_name  = "xfce4-verve-plugin";
+  ver_maj = "1.0";
+  ver_min = "0";
+
+  src = fetchurl {
+    url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+    sha256 = "18zi8lam82xwjm5zdnilg3ffxpp5z8vjad3kjvdsyxdhsdza84fh";
+  };
+  name = "${p_name}-${ver_maj}.${ver_min}";
+
+  buildInputs = [ pkgconfig intltool glib exo pcre libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+  meta = {
+    homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+    description = "A command-line plugin";
+    platforms = platforms.linux;
+    maintainers = [ maintainers.AndersonTorres ];
+  };
+}