3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #24483 from benley/latte-dock

latte-dock: init at 0.5.98
This commit is contained in:
Benjamin Staffin 2017-03-30 20:06:10 -04:00 committed by GitHub
commit 5c28f26bac
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, lib, cmake, plasma-framework, fetchFromGitHub }:
let version = "0.5.98"; in
stdenv.mkDerivation {
name = "latte-dock-${version}";
src = fetchFromGitHub {
owner = "psifidotos";
repo = "Latte-Dock";
rev = version;
sha256 = "0z02ipbbv0dmcxs2g3dq5h62klhijni1i4ikq903hjg0j2cqg5xh";
};
buildInputs = [ plasma-framework ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.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 ];
};
}

View file

@ -17051,6 +17051,8 @@ with pkgs;
redshift-plasma-applet = libsForQt5.callPackage ../applications/misc/redshift-plasma-applet { };
latte-dock = libsForQt5.callPackage ../applications/misc/latte-dock { };
orion = callPackage ../misc/themes/orion {};
albatross = callPackage ../misc/themes/albatross { };