mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
ea5b225324
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.7.4 with grep in /nix/store/n1ad51hdp3jagm7fx91gp3i580ghid4q-latte-dock-0.7.4 - found 0.7.4 in filename of file in /nix/store/n1ad51hdp3jagm7fx91gp3i580ghid4q-latte-dock-0.7.4
29 lines
839 B
Nix
29 lines
839 B
Nix
{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchFromGitHub
|
|
, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash }:
|
|
|
|
let version = "0.7.4"; in
|
|
|
|
mkDerivation {
|
|
name = "latte-dock-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "psifidotos";
|
|
repo = "Latte-Dock";
|
|
rev = "v${version}";
|
|
sha256 = "0w4fphgpdvql31wrypxyfahmr4cv5ap96wjc4270yyawnrqrx0y6";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|