mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #24886 from benley/latte-dock-0.6
latte-dock: 0.5.98 -> 0.6.0
This commit is contained in:
commit
3085e95a20
1 changed files with 26 additions and 19 deletions
|
@ -1,26 +1,33 @@
|
||||||
{ stdenv, lib, cmake, plasma-framework, fetchFromGitHub }:
|
{ stdenv, lib, cmake, xorg, plasma-framework, fetchFromGitHub, kdeWrapper }:
|
||||||
|
|
||||||
let version = "0.5.98"; in
|
let version = "0.6.0";
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
unwrapped = stdenv.mkDerivation {
|
||||||
name = "latte-dock-${version}";
|
name = "latte-dock-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "psifidotos";
|
owner = "psifidotos";
|
||||||
repo = "Latte-Dock";
|
repo = "Latte-Dock";
|
||||||
rev = version;
|
rev = "v${version}";
|
||||||
sha256 = "0z02ipbbv0dmcxs2g3dq5h62klhijni1i4ikq903hjg0j2cqg5xh";
|
sha256 = "1967hx4lavy96vvik8d5m2c6ycd2mlf9cmhrv40zr0784ni0ikyv";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ plasma-framework ];
|
buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
enableParallelBuilding = true;
|
||||||
description = "Dock-style app launcher based on Plasma frameworks";
|
|
||||||
homepage = https://github.com/psifidotos/Latte-Dock;
|
meta = with stdenv.lib; {
|
||||||
license = licenses.gpl2;
|
description = "Dock-style app launcher based on Plasma frameworks";
|
||||||
platforms = platforms.unix;
|
homepage = https://github.com/psifidotos/Latte-Dock;
|
||||||
maintainers = [ maintainers.benley ];
|
license = licenses.gpl2;
|
||||||
};
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.benley ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
in kdeWrapper {
|
||||||
|
inherit unwrapped;
|
||||||
|
targets = [ "bin/latte-dock" ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue