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

29 lines
839 B
Nix
Raw Normal View History

2017-08-19 10:42:36 +02:00
{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchFromGitHub
2017-09-24 12:10:54 +02:00
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash }:
2017-03-30 21:58:48 +02:00
2017-09-24 12:10:54 +02:00
let version = "0.7.1"; in
2017-03-30 21:58:48 +02:00
2017-05-16 17:56:41 +02:00
mkDerivation {
name = "latte-dock-${version}";
2017-03-30 21:58:48 +02:00
2017-05-16 17:56:41 +02:00
src = fetchFromGitHub {
owner = "psifidotos";
repo = "Latte-Dock";
rev = "v${version}";
2017-09-24 12:10:54 +02:00
sha256 = "0vdmsjj1qqlzz26mznb56znv5x7akbvw65ybbzakclp4q1xrsrm2";
2017-05-16 17:56:41 +02:00
};
2017-03-30 21:58:48 +02:00
2017-09-24 12:10:54 +02:00
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ];
2017-03-30 21:58:48 +02:00
2017-08-19 10:42:36 +02:00
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
2017-09-24 12:10:54 +02:00
qtx11extras kcrash ];
2017-03-30 21:58:48 +02:00
2017-05-16 17:56:41 +02: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 ];
};
2017-03-30 21:58:48 +02:00
}