summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-31 01:30:07 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-31 02:49:31 -0300
commit1a1fc977f788d21607735cc1cdfb9bde2d8dde00 (patch)
tree1031bc91e9e77a79358e20b78d91fc3a7bd2ceb6 /pkgs
parentfa2ba895133c0c326d77d91c048c6c32f5e92f67 (diff)
xfce4-embed-plugin: removing myself from maintainers list
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin/default.nix21
1 files changed, 14 insertions, 7 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin/default.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin/default.nix
index a731c9fcbb53..cf383f840d5c 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin/default.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin/default.nix
@@ -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 = [ ];
};
}