mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
31 lines
905 B
Nix
31 lines
905 B
Nix
{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchurl
|
|
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash, knewstuff }:
|
|
|
|
mkDerivation rec {
|
|
pname = "latte-dock";
|
|
version = "0.9.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "0x7a93a7axsa0fzpbkkv1z722k9za4p51xcpzdpnh5ih1zij0csi";
|
|
name = "${pname}-${version}.tar.xz";
|
|
};
|
|
|
|
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
|
|
qtx11extras kcrash knewstuff ];
|
|
|
|
|
|
|
|
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 ];
|
|
};
|
|
|
|
|
|
}
|