mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
c18e0463fb
Otherwise, wayland-scanner would be picked up from the wayland in buildInputs, which isn't cross-friendly and will stop working when we split wayland-scanner into a separate package.
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ lib, mkDerivation, fetchFromGitLab
|
|
, cmake, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash
|
|
, knewstuff, wayland-scanner
|
|
, plasma-framework, plasma-wayland-protocols, plasma-workspace, plasma-desktop, qtwayland
|
|
, wayland, xorg
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "latte-dock";
|
|
version = "unstable-2024-01-31";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "plasma";
|
|
repo = "latte-dock";
|
|
rev = "131ee4d39ce8913b2de8f9a673903225345c7a38";
|
|
sha256 = "sha256-C1FvgkdxCzny+F6igS2YjsHOpkK34wl6je2tHlGQwU0=";
|
|
};
|
|
|
|
buildInputs = [ plasma-framework plasma-wayland-protocols qtwayland xorg.libpthreadstubs xorg.libXdmcp xorg.libSM wayland plasma-workspace plasma-desktop ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
|
|
qtx11extras kcrash knewstuff wayland-scanner ];
|
|
|
|
patches = [
|
|
./0001-Disable-autostart.patch
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/etc/xdg/autostart
|
|
cp $out/share/applications/org.kde.latte-dock.desktop $out/etc/xdg/autostart
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Dock-style app launcher based on Plasma frameworks";
|
|
mainProgram = "latte-dock";
|
|
homepage = "https://invent.kde.org/plasma/latte-dock";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.ysndr ];
|
|
};
|
|
|
|
|
|
}
|