Files
nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-docklike-plugin/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

71 lines
1.2 KiB
Nix

{
stdenv,
lib,
fetchFromGitLab,
gettext,
meson,
ninja,
pkg-config,
cairo,
glib,
gtk3,
gtk-layer-shell,
libX11,
libXi,
libxfce4ui,
libxfce4util,
libxfce4windowing,
xfce4-panel,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xfce4-docklike-plugin";
version = "0.5.0";
src = fetchFromGitLab {
domain = "gitlab.xfce.org";
owner = "panel-plugins";
repo = "xfce4-docklike-plugin";
tag = "xfce4-docklike-plugin-${finalAttrs.version}";
hash = "sha256-1R9qQKqn/CIV36GYmyg54t3xiY23qUs5EMLxvAIavK8=";
};
strictDeps = true;
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
gettext
glib # glib-compile-resources
meson
ninja
pkg-config
];
buildInputs = [
cairo
glib
gtk3
gtk-layer-shell
libX11
libXi
libxfce4ui
libxfce4util
libxfce4windowing
xfce4-panel
];
passthru.updateScript = gitUpdater { rev-prefix = "xfce4-docklike-plugin-"; };
meta = {
homepage = "https://docs.xfce.org/panel-plugins/xfce4-docklike-plugin/start";
description = "Modern, minimalist taskbar for Xfce";
license = lib.licenses.gpl3Plus;
teams = [ lib.teams.xfce ];
platforms = lib.platforms.linux;
};
})