mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
bea326e8de
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/latte-dock/versions
32 lines
910 B
Nix
32 lines
910 B
Nix
{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchurl
|
|
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash, knewstuff }:
|
|
|
|
mkDerivation rec {
|
|
pname = "latte-dock";
|
|
version = "0.8.5";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.kde.org/stable/${pname}/${name}.tar.xz";
|
|
sha256 = "1yhnmppp65xy8skainn438q3hwlpsz8qcj4ksvl8xdz5jzn7gs7k";
|
|
name = "${name}.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 ];
|
|
};
|
|
|
|
|
|
}
|