mirror of
https://github.com/KDE/latte-dock.git
synced 2025-01-05 01:18:02 +03:00
Add default.nix for fun and profit.
This commit is contained in:
parent
66e52716b4
commit
f9727cdac5
@ -1,5 +1,8 @@
|
|||||||
#**CHANGELOG**#
|
#**CHANGELOG**#
|
||||||
|
|
||||||
|
#### Version 0.10.X (current development build)
|
||||||
|
* optionally maximise panel size in presence of maximised windows (https://invent.kde.org/plasma/latte-dock/-/merge_requests/46)
|
||||||
|
|
||||||
#### Version 0.10.8
|
#### Version 0.10.8
|
||||||
* multi-screen: fix docks/panels screen repositioning when the user specifies different screen for dock or panel
|
* multi-screen: fix docks/panels screen repositioning when the user specifies different screen for dock or panel
|
||||||
* fix borders identification for autopositioning vertical docks/panels
|
* fix borders identification for autopositioning vertical docks/panels
|
||||||
|
28
default.nix
Normal file
28
default.nix
Normal file
@ -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 = [ ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user