Skip to content

Commit

Permalink
latte-dock: init at 0.5.98
Browse files Browse the repository at this point in the history
  • Loading branch information
benley committed Mar 30, 2017
1 parent 8f60914 commit 09e4ece
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/applications/misc/latte-dock/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 09e4ece

Please sign in to comment.