nixpkgs/pkgs/desktops/lxqt/lxqt-panel/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

93 lines
1.4 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, alsa-lib
, libdbusmenu-lxqt
, kguiaddons
, kwindowsystem
, layer-shell-qt
, libXdamage
, libXdmcp
, libXtst
, libdbusmenu
, liblxqt
, libpthreadstubs
, libpulseaudio
, libqtxdg
, libstatgrab
, libsysstat
, lm_sensors
, lxqt-build-tools
, lxqt-globalkeys
, lxqt-menu-data
, menu-cache
, pcre
, qtbase
, qtsvg
, qttools
, qtwayland
, solid
, wrapQtAppsHook
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "lxqt-panel";
version = "2.0.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
hash = "sha256-m+LUG7hnkIJj48HJIy6pMyv3YZ/RfuSXbdBKJ9mi764=";
};
nativeBuildInputs = [
cmake
pkg-config
lxqt-build-tools
qttools
wrapQtAppsHook
];
buildInputs = [
alsa-lib
libdbusmenu-lxqt
kguiaddons
kwindowsystem
layer-shell-qt
libXdamage
libXdmcp
libXtst
libdbusmenu
liblxqt
libpthreadstubs
libpulseaudio
libqtxdg
libstatgrab
libsysstat
lm_sensors
lxqt-globalkeys
lxqt-menu-data
menu-cache
pcre
qtbase
qtsvg
qtwayland
solid
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-panel";
description = "LXQt desktop panel";
mainProgram = "lxqt-panel";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = teams.lxqt.members;
};
}