xfce4-embed-plugin: removing myself from maintainers list

This commit is contained in:
AndersonTorres 2021-01-31 01:30:07 -03:00
parent fa2ba89513
commit 1a1fc977f7

View File

@ -1,11 +1,18 @@
{ lib, stdenv, fetchurl, pkg-config, intltool, libxfce4util, xfce4-panel, libxfce4ui, gtk2, xfce }: { lib
, stdenv
, fetchurl
, pkg-config
, intltool
, libxfce4util
, xfce4-panel
, libxfce4ui
, gtk2
, xfce
}:
let let
category = "panel-plugins"; category = "panel-plugins";
in in stdenv.mkDerivation rec {
with lib;
stdenv.mkDerivation rec {
pname = "xfce4-embed-plugin"; pname = "xfce4-embed-plugin";
version = "1.6.0"; version = "1.6.0";
@ -32,11 +39,11 @@ stdenv.mkDerivation rec {
versionLister = xfce.archiveLister category pname; versionLister = xfce.archiveLister category pname;
}; };
meta = { meta = with lib;{
homepage = "https://docs.xfce.org/panel-plugins/xfce4-embed-plugin"; homepage = "https://docs.xfce.org/panel-plugins/xfce4-embed-plugin";
description = "Embed arbitrary app windows on Xfce panel"; description = "Embed arbitrary app windows on Xfce panel";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ]; maintainers = [ ];
}; };
} }