1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/applications/misc/latte-dock/default.nix

31 lines
905 B
Nix
Raw Normal View History

{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchurl
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash, knewstuff }:
2017-03-30 20:58:48 +01:00
mkDerivation rec {
pname = "latte-dock";
2020-03-29 23:31:29 +01:00
version = "0.9.10";
2017-03-30 20:58:48 +01:00
src = fetchurl {
url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
2020-03-29 23:31:29 +01:00
sha256 = "11s9fslr33h3ic14ifr43jphf68jpny8jmhvmrrwcz6w0p3falzw";
name = "${pname}-${version}.tar.xz";
2017-05-16 16:56:41 +01:00
};
2017-03-30 20:58:48 +01:00
2017-09-24 11:10:54 +01:00
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ];
2017-03-30 20:58:48 +01:00
2017-08-19 09:42:36 +01:00
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
qtx11extras kcrash knewstuff ];
2017-03-30 20:58:48 +01:00
2017-05-16 16:56:41 +01:00
meta = with lib; {
description = "Dock-style app launcher based on Plasma frameworks";
2020-03-02 08:51:18 +00:00
homepage = "https://github.com/psifidotos/Latte-Dock";
2017-05-16 16:56:41 +01:00
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.benley maintainers.ysndr ];
2017-05-16 16:56:41 +01:00
};
2017-03-30 20:58:48 +01:00
}