Merge pull request #303382 from bobby285271/upd/xfce-i3

xfce.xfce4-i3-workspaces-plugin: 1.4.1 -> 1.4.2
This commit is contained in:
José Romildo Malaquias 2024-04-11 18:28:36 -03:00 committed by GitHub
commit 274dc1ce96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,39 +1,33 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, intltool, gtk3
, libxfce4ui, libxfce4util, xfconf, xfce4-dev-tools, xfce4-panel
, libxfce4ui, libxfce4util, xfce4-dev-tools, xfce4-panel
, i3ipc-glib
}:
stdenv.mkDerivation rec {
pname = "xfce4-i3-workspaces-plugin";
version = "1.4.1";
version = "1.4.2";
src = fetchFromGitHub {
owner = "denesb";
repo = "xfce4-i3-workspaces-plugin";
rev = version;
sha256 = "sha256-Ss3uUmNvBqiu7hUaSy98+YYrWs64LFGbV4DMAV+xkvA=";
sha256 = "sha256-CKpofupoJhe5IORJgij6gOGotB+dGkUDtTUdon8/JdE=";
};
nativeBuildInputs = [
pkg-config
intltool
xfce4-dev-tools
];
buildInputs = [
gtk3
xfconf
libxfce4ui
libxfce4util
xfce4-dev-tools
xfce4-panel
i3ipc-glib
];
preConfigure = ''
./autogen.sh
patchShebangs .
'';
enableParallelBuilding = true;
meta = with lib; {