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
category = "panel-plugins";
in
with lib;
stdenv.mkDerivation rec {
in stdenv.mkDerivation rec {
pname = "xfce4-embed-plugin";
version = "1.6.0";
@ -32,11 +39,11 @@ stdenv.mkDerivation rec {
versionLister = xfce.archiveLister category pname;
};
meta = {
meta = with lib;{
homepage = "https://docs.xfce.org/panel-plugins/xfce4-embed-plugin";
description = "Embed arbitrary app windows on Xfce panel";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ];
maintainers = [ ];
};
}