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