Skip to content

Commit

Permalink
Merge pull request NixOS#273319 from JoshuaFern/xfce4-docklike-plugin
Browse files Browse the repository at this point in the history
xfce.xfce4-docklike-plugin: init at 0.4.1
  • Loading branch information
romildo authored Dec 14, 2023
2 parents f3109e1 + 22046dd commit f5c41d4
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/desktops/xfce/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ makeScopeWithSplicing' {

xfce4-dockbarx-plugin = callPackage ./panel-plugins/xfce4-dockbarx-plugin { };

xfce4-docklike-plugin = callPackage ./panel-plugins/xfce4-docklike-plugin { };

xfce4-embed-plugin = callPackage ./panel-plugins/xfce4-embed-plugin { };

xfce4-eyes-plugin = callPackage ./panel-plugins/xfce4-eyes-plugin { };
Expand Down
39 changes: 39 additions & 0 deletions pkgs/desktops/xfce/panel-plugins/xfce4-docklike-plugin/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{ lib
, mkXfceDerivation
, glib
, gtk3
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
, libwnck
, exo
}:

mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-docklike-plugin";
version = "0.4.1";
sha256 = "sha256-BKxd2TFEbRHeFy/dC2Wx5ppErsi7d2m7JicFCcZbjTo=";

buildInputs = [
glib
gtk3
libxfce4ui
libxfce4util
xfce4-panel
xfconf
libwnck
exo
];

NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";

meta = with lib; {
homepage = "https://docs.xfce.org/panel-plugins/xfce4-docklike-plugin/start";
description = "A modern, minimalist taskbar for Xfce";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}

0 comments on commit f5c41d4

Please sign in to comment.