nixos/homer: init (#368594)
[NixPkgs.git] / pkgs / desktops / plasma-5 / 3rdparty / addons / virtual-desktop-bar.nix
blob873b7cc2ceed41b359ba6a37335a48d877e4471a
2   lib,
3   mkDerivation,
4   fetchFromGitHub,
5   extra-cmake-modules,
6   kwindowsystem,
7   plasma-framework,
8   qtx11extras,
9 }:
11 mkDerivation rec {
12   pname = "plasma-applet-virtual-desktop-bar";
13   version = "unstable-2021-02-20";
15   src = fetchFromGitHub {
16     owner = "wsdfhjxc";
17     repo = "virtual-desktop-bar";
18     rev = "3e9bbddb8def8da65071a1c325eaa06598e8a473";
19     sha256 = "192ns6c2brzq46pg385n0v1ydbz52aaa8f5dgfw5251hrw9c7bxg";
20   };
22   buildInputs = [
23     kwindowsystem
24     plasma-framework
25     qtx11extras
26   ];
28   nativeBuildInputs = [
29     extra-cmake-modules
30   ];
32   cmakeFlags = [
33     "-Wno-dev"
34   ];
36   meta = with lib; {
37     description = "Manage virtual desktops dynamically in a convenient way";
38     homepage = "https://github.com/wsdfhjxc/virtual-desktop-bar";
39     license = licenses.gpl3Only;
40     platforms = platforms.linux;
41     maintainers = with maintainers; [ peterhoeg ];
42   };