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
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gettext,
|
|
pkg-config,
|
|
intltool,
|
|
gtk3,
|
|
libxfce4ui,
|
|
libxfce4util,
|
|
xfce4-dev-tools,
|
|
xfce4-panel,
|
|
i3ipc-glib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xfce4-i3-workspaces-plugin";
|
|
version = "1.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "denesb";
|
|
repo = "xfce4-i3-workspaces-plugin";
|
|
rev = version;
|
|
sha256 = "sha256-CKpofupoJhe5IORJgij6gOGotB+dGkUDtTUdon8/JdE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
pkg-config
|
|
intltool
|
|
xfce4-dev-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfce4-panel
|
|
i3ipc-glib
|
|
];
|
|
|
|
patches = [
|
|
# Fix build with gettext 0.25
|
|
# https://hydra.nixos.org/build/302762031/nixlog/2
|
|
# FIXME: remove when gettext is fixed
|
|
./gettext-0.25.patch
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/denesb/xfce4-i3-workspaces-plugin";
|
|
description = "Workspace switcher plugin for xfce4-panel which can be used for the i3 window manager";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ berbiche ];
|
|
teams = [ teams.xfce ];
|
|
};
|
|
}
|