mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
27 lines
656 B
Nix
27 lines
656 B
Nix
{ 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 ];
|
|
};
|
|
}
|