2022-09-11 20:39:27 +00:00
|
|
|
{ mkDerivation, lib, cmake, xorg, plasma-framework, plasma-wayland-protocols, fetchFromGitLab
|
2023-01-30 18:19:20 +00:00
|
|
|
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, qtwayland, kcrash, knewstuff
|
2023-04-27 18:49:51 +00:00
|
|
|
, wayland, plasma-workspace, plasma-desktop }:
|
2017-03-30 19:58:48 +00:00
|
|
|
|
2018-08-09 19:25:44 +00:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "latte-dock";
|
2023-01-30 18:19:20 +00:00
|
|
|
version = "unstable-2023-03-31";
|
2022-09-11 20:39:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "invent.kde.org";
|
|
|
|
owner = "plasma";
|
|
|
|
repo = "latte-dock";
|
2023-01-30 18:19:20 +00:00
|
|
|
rev = "4f93251d8c635c6150483ecb321eb276f34d4280";
|
|
|
|
sha256 = "sha256-oEfKfsVIAmYgQ7+WyBEQfVpI4IndWhYXWBsJE8bNNyI=";
|
2017-05-16 15:56:41 +00:00
|
|
|
};
|
2017-03-30 19:58:48 +00:00
|
|
|
|
2023-04-27 18:49:51 +00:00
|
|
|
buildInputs = [ plasma-framework plasma-wayland-protocols qtwayland xorg.libpthreadstubs xorg.libXdmcp xorg.libSM wayland plasma-workspace plasma-desktop ];
|
2017-03-30 19:58:48 +00:00
|
|
|
|
2017-08-19 08:42:36 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
|
2018-08-09 19:25:44 +00:00
|
|
|
qtx11extras kcrash knewstuff ];
|
|
|
|
|
2021-10-04 18:25:59 +00:00
|
|
|
patches = [
|
2022-09-11 20:39:27 +00:00
|
|
|
./0001-Disable-autostart.patch
|
2021-10-04 18:25:59 +00:00
|
|
|
];
|
2022-09-11 20:39:27 +00:00
|
|
|
|
2022-12-06 19:52:51 +00:00
|
|
|
postInstall = ''
|
2021-10-04 18:25:59 +00:00
|
|
|
mkdir -p $out/etc/xdg/autostart
|
|
|
|
cp $out/share/applications/org.kde.latte-dock.desktop $out/etc/xdg/autostart
|
|
|
|
'';
|
2017-03-30 19:58:48 +00:00
|
|
|
|
2017-05-16 15:56:41 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Dock-style app launcher based on Plasma frameworks";
|
2022-09-11 20:39:27 +00:00
|
|
|
homepage = "https://invent.kde.org/plasma/latte-dock";
|
2017-05-16 15:56:41 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2022-09-16 16:41:53 +00:00
|
|
|
maintainers = [ maintainers.ysndr ];
|
2017-05-16 15:56:41 +00:00
|
|
|
};
|
2018-08-09 19:25:44 +00:00
|
|
|
|
|
|
|
|
2017-03-30 19:58:48 +00:00
|
|
|
}
|