forked from mirrors/nixpkgs
latte-dock: init at 0.5.98
This commit is contained in:
parent
8f609149d1
commit
09e4ece6e1
26
pkgs/applications/misc/latte-dock/default.nix
Normal file
26
pkgs/applications/misc/latte-dock/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -17049,6 +17049,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 { };
|
||||
|
|
Loading…
Reference in a new issue