nixpkgs/pkgs/applications/misc/latte-dock/default.nix
Ryan Mulligan 52efa97bf4 latte-dock: 0.7.1 -> 0.7.3
Semi-automatic update. These checks were performed:

- built on NixOS
- found 0.7.3 with grep in /nix/store/0ba5gi00dx85l1lvaf423gmsnxb3g60d-latte-dock-0.7.3
- found 0.7.3 in filename of file in /nix/store/0ba5gi00dx85l1lvaf423gmsnxb3g60d-latte-dock-0.7.3

cc "@benley"
2018-02-26 20:00:53 -08:00

29 lines
839 B
Nix

{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchFromGitHub
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash }:
let version = "0.7.3"; in
mkDerivation {
name = "latte-dock-${version}";
src = fetchFromGitHub {
owner = "psifidotos";
repo = "Latte-Dock";
rev = "v${version}";
sha256 = "110bal0dairsvgj624n5k0zabh2qfy9dk560a4wy7icxv0cjh7hg";
};
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ];
nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem
qtx11extras kcrash ];
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 ];
};
}