nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix
AndersonTorres 18757f3a11
XFCE plugins: update, taken from #20410
xfce4-embed-plugin   : 1.4.1 -> 1.6.0
xfce4-eyes-plugin    : 4.4.3 -> 4.4.4
xfce4-fsguard-plugin : 1.0.1 -> 1.0.2
xfce4-verve-plugin   : 1.0.1 -> 1.1.0
xfce4-xkb-plugin     : 0.5.6 -> 0.7.1
2016-11-30 18:26:14 +01:00

24 lines
758 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-fsguard-plugin";
ver_maj = "1.0";
ver_min = "2";
src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
sha256 = "1bj021h4q68bc03f32pkyqy4gfd1sz6s21nxdg7j6gdfhs9xbj52";
};
name = "${p_name}-${ver_maj}.${ver_min}";
buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Filesystem monitor";
platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ];
};
}