-
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lana Black
committed
Oct 29, 2023
1 parent
66e5271
commit f9727cd
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ pkgs ? import <nixpkgs> {} }: | ||
|
||
let | ||
inherit (pkgs) stdenv libsForQt5; | ||
in | ||
stdenv.mkDerivation { | ||
pname = "latte-dock"; | ||
version = "unstable-9999"; | ||
|
||
src = ./.; | ||
|
||
buildInputs = with pkgs; with libsForQt5; [ plasma-framework plasma-wayland-protocols qtwayland xorg.libpthreadstubs xorg.libXdmcp xorg.libSM wayland plasma-workspace plasma-desktop ]; | ||
|
||
nativeBuildInputs = with pkgs; with libsForQt5; [ extra-cmake-modules cmake karchive kwindowsystem qtx11extras kcrash knewstuff wrapQtAppsHook ]; | ||
|
||
postInstall = '' | ||
mkdir -p $out/etc/xdg/autostart | ||
cp $out/share/applications/org.kde.latte-dock.desktop $out/etc/xdg/autostart | ||
''; | ||
|
||
meta = with pkgs.lib; { | ||
description = "Dock-style app launcher based on Plasma frameworks"; | ||
homepage = "https://invent.kde.org/plasma/latte-dock"; | ||
license = licenses.gpl2; | ||
platforms = platforms.unix; | ||
maintainers = [ ]; | ||
}; | ||
} |