Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / xfce / panel-plugins / xfce4-i3-workspaces-plugin / default.nix
blob5a6794bf79af24b3409e95935e20a74325aa2fbe
1 { lib, stdenv, fetchFromGitHub, pkg-config, intltool, gtk3
2 , libxfce4ui, libxfce4util, xfce4-dev-tools, xfce4-panel
3 , i3ipc-glib
4 }:
6 stdenv.mkDerivation rec {
7   pname = "xfce4-i3-workspaces-plugin";
8   version = "1.4.2";
10   src = fetchFromGitHub {
11     owner = "denesb";
12     repo = "xfce4-i3-workspaces-plugin";
13     rev = version;
14     sha256 = "sha256-CKpofupoJhe5IORJgij6gOGotB+dGkUDtTUdon8/JdE=";
15   };
17   nativeBuildInputs = [
18     pkg-config
19     intltool
20     xfce4-dev-tools
21   ];
23   buildInputs = [
24     gtk3
25     libxfce4ui
26     libxfce4util
27     xfce4-panel
28     i3ipc-glib
29    ];
31   enableParallelBuilding = true;
33   meta = with lib; {
34     homepage = "https://github.com/denesb/xfce4-i3-workspaces-plugin";
35     description = "Workspace switcher plugin for xfce4-panel which can be used for the i3 window manager";
36     license = licenses.gpl3Plus;
37     platforms = platforms.unix;
38     maintainers = with maintainers; [ berbiche ] ++ teams.xfce.members;
39   };