mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchurl
|
|
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash, knewstuff }:
|
|
|
|
mkDerivation rec {
|
|
pname = "latte-dock";
|
|
version = "0.10.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "XRop+MNcbeCcbnL2LM1i67QvMudW3CjWYEPLkT/qbGM=";
|
|
name = "${pname}-${version}.tar.xz";
|
|
};
|
|
|
|
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
|
|
qtx11extras kcrash knewstuff ];
|
|
|
|
patches = [
|
|
./0001-close-user-autostart.patch
|
|
];
|
|
fixupPhase = ''
|
|
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";
|
|
homepage = "https://github.com/psifidotos/Latte-Dock";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.benley maintainers.ysndr ];
|
|
};
|
|
|
|
|
|
}
|