nixpkgs/pkgs/applications/misc/latte-dock/default.nix

31 lines
902 B
Nix
Raw Normal View History

{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchurl
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash, knewstuff }:
2017-03-30 19:58:48 +00:00
mkDerivation rec {
pname = "latte-dock";
version = "0.8.9";
2017-03-30 19:58:48 +00:00
src = fetchurl {
url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
sha256 = "1kkpxa39crjpqgamrcpgp1mrcdg0aq9850yb6cf7lw7d3x2fdrxj";
name = "${pname}-${version}.tar.xz";
2017-05-16 15:56:41 +00:00
};
2017-03-30 19:58:48 +00:00
2017-09-24 10:10:54 +00:00
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ];
2017-03-30 19:58:48 +00:00
2017-08-19 08:42:36 +00:00
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
qtx11extras kcrash knewstuff ];
2017-03-30 19:58:48 +00:00
2017-05-16 15:56:41 +00:00
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 ];
2017-05-16 15:56:41 +00:00
};
2017-03-30 19:58:48 +00:00
}