plasma-applet-virtual-desktop-bar: init at unstable-2021-02-20
This commit is contained in:
parent
48b365162a
commit
1905c7c0a7
40
pkgs/desktops/plasma-5/3rdparty/addons/virtual-desktop-bar.nix
vendored
Normal file
40
pkgs/desktops/plasma-5/3rdparty/addons/virtual-desktop-bar.nix
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, fetchFromGitHub
|
||||||
|
, extra-cmake-modules
|
||||||
|
, kwindowsystem
|
||||||
|
, plasma-framework
|
||||||
|
, qtx11extras
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "plasma-applet-virtual-desktop-bar";
|
||||||
|
version = "unstable-2021-02-20";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "wsdfhjxc";
|
||||||
|
repo = "virtual-desktop-bar";
|
||||||
|
rev = "3e9bbddb8def8da65071a1c325eaa06598e8a473";
|
||||||
|
sha256 = "192ns6c2brzq46pg385n0v1ydbz52aaa8f5dgfw5251hrw9c7bxg";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
kwindowsystem plasma-framework qtx11extras
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
extra-cmake-modules
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-Wno-dev"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Manage virtual desktops dynamically in a convenient way";
|
||||||
|
homepage = "https://github.com/wsdfhjxc/virtual-desktop-bar";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
};
|
||||||
|
}
|
@ -143,6 +143,7 @@ let
|
|||||||
|
|
||||||
thirdParty = let inherit (libsForQt5) callPackage; in {
|
thirdParty = let inherit (libsForQt5) callPackage; in {
|
||||||
plasma-applet-caffeine-plus = callPackage ./3rdparty/addons/caffeine-plus.nix { };
|
plasma-applet-caffeine-plus = callPackage ./3rdparty/addons/caffeine-plus.nix { };
|
||||||
|
plasma-applet-virtual-desktop-bar = callPackage ./3rdparty/addons/virtual-desktop-bar.nix { };
|
||||||
kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { };
|
kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { };
|
||||||
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
||||||
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
||||||
|
@ -924,6 +924,7 @@ mapAliases ({
|
|||||||
;
|
;
|
||||||
inherit (plasma5Packages.thirdParty)
|
inherit (plasma5Packages.thirdParty)
|
||||||
plasma-applet-caffeine-plus
|
plasma-applet-caffeine-plus
|
||||||
|
plasma-applet-virtual-desktop-bar
|
||||||
kwin-dynamic-workspaces
|
kwin-dynamic-workspaces
|
||||||
kwin-tiling
|
kwin-tiling
|
||||||
krohnkite
|
krohnkite
|
||||||
|
Loading…
Reference in New Issue
Block a user