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
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
gettext,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
python3,
|
|
glib,
|
|
gtk3,
|
|
libwnck,
|
|
libxfce4ui,
|
|
libxfce4util,
|
|
xfce4-panel,
|
|
xfconf,
|
|
gitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xfce4-windowck-plugin";
|
|
version = "0.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/panel-plugins/xfce4-windowck-plugin/${lib.versions.majorMinor finalAttrs.version}/xfce4-windowck-plugin-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-Ay4wXXTxe9ZbKL0mDPGS/PiqDfM9EWCH5IX9E2i3zzk=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
glib # glib-compile-resources
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
libwnck
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfce4-panel
|
|
xfconf
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
url = "https://gitlab.xfce.org/panel-plugins/xfce4-windowck-plugin";
|
|
rev-prefix = "xfce4-windowck-plugin-";
|
|
};
|
|
|
|
meta = {
|
|
description = "Xfce panel plugin for displaying window title and buttons";
|
|
homepage = "https://gitlab.xfce.org/panel-plugins/xfce4-windowck-plugin";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
teams = [ lib.teams.xfce ];
|
|
};
|
|
})
|