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

27 lines
694 B
Nix
Raw Normal View History

2017-05-16 16:56:41 +01:00
{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchFromGitHub }:
2017-03-30 20:58:48 +01:00
2017-05-16 16:56:41 +01:00
let version = "0.6.0"; in
2017-03-30 20:58:48 +01:00
2017-05-16 16:56:41 +01:00
mkDerivation {
name = "latte-dock-${version}";
2017-03-30 20:58:48 +01:00
2017-05-16 16:56:41 +01:00
src = fetchFromGitHub {
owner = "psifidotos";
repo = "Latte-Dock";
rev = "v${version}";
sha256 = "1967hx4lavy96vvik8d5m2c6ycd2mlf9cmhrv40zr0784ni0ikyv";
};
2017-03-30 20:58:48 +01:00
2017-05-16 16:56:41 +01:00
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp ];
2017-03-30 20:58:48 +01:00
2017-05-16 16:56:41 +01:00
nativeBuildInputs = [ cmake ];
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";
homepage = https://github.com/psifidotos/Latte-Dock;
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.benley ];
};
2017-03-30 20:58:48 +01:00
}