Skip to content

Commit

Permalink
Merge #22562: xfce4-mailwatch-plugin: init at 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Mar 5, 2017
2 parents 20c2f51 + 70fea43 commit 8bcbd4f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/desktops/xfce/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
xfce4-hardware-monitor-plugin = callPackage ./panel-plugins/xfce4-hardware-monitor-plugin.nix { };
xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
xfce4_mailwatch_plugin = callPackage ./panel-plugins/xfce4-mailwatch-plugin.nix { };
xfce4_mpc_plugin = callPackage ./panel-plugins/xfce4-mpc-plugin.nix { };
xfce4-sensors-plugin = callPackage ./panel-plugins/xfce4-sensors-plugin.nix { };
xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
Expand Down
25 changes: 25 additions & 0 deletions pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui,
libxfcegui4, xfconf, gtk, exo, gnutls, libgcrypt }:

with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-mailwatch-plugin";
ver_maj = "1.2";
ver_min = "0";

src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
sha256 = "1bfw3smwivr9mzdyq768biqrl4aq94zqi3xjzq6kqnd8561cqjk2";
};
name = "${p_name}-${ver_maj}.${ver_min}";

buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel
libxfcegui4 xfconf gtk exo gnutls libgcrypt ];

meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Mailwatch plugin for Xfce panel";
platforms = platforms.linux;
maintainers = [ maintainers.matthiasbeyer ];
};
}

0 comments on commit 8bcbd4f

Please sign in to comment.