2020-04-15 19:50:51 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, xfconf, gtk3, xfce }:
|
2020-04-13 23:12:16 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
category = "panel-plugins";
|
|
|
|
in
|
2015-01-17 03:46:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-13 23:12:16 +02:00
|
|
|
pname = "xfce4-eyes-plugin";
|
2020-04-15 19:50:51 +02:00
|
|
|
version = "4.5.0";
|
2015-01-17 03:46:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-13 23:12:16 +02:00
|
|
|
url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
2020-04-15 19:50:51 +02:00
|
|
|
sha256 = "17gj6fbvvrdzvz61czmia8hqynllsnmhk61fs4aml443cc1h1bpx";
|
2015-01-17 03:46:34 +01:00
|
|
|
};
|
|
|
|
|
2020-04-15 19:50:51 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxfce4util
|
|
|
|
libxfce4ui
|
|
|
|
xfce4-panel
|
|
|
|
xfconf
|
|
|
|
gtk3
|
|
|
|
];
|
2020-04-13 23:12:16 +02:00
|
|
|
|
|
|
|
passthru.updateScript = xfce.updateScript {
|
|
|
|
inherit pname version;
|
|
|
|
attrPath = "xfce.${pname}";
|
|
|
|
versionLister = xfce.archiveLister category pname;
|
|
|
|
};
|
2015-01-17 03:46:34 +01:00
|
|
|
|
2020-04-13 23:12:16 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-15 19:50:51 +02:00
|
|
|
homepage = "https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin";
|
|
|
|
description = "Rolling eyes (following mouse pointer) plugin for the Xfce panel";
|
|
|
|
license = licenses.gpl2Plus;
|
2015-01-17 03:46:34 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
};
|
|
|
|
}
|