nixpkgs/pkgs/desktops/lxqt/lxqt-panel/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, alsa-lib
, kguiaddons
, kwindowsystem
, libXdamage
, libdbusmenu
, liblxqt
, libpulseaudio
, libqtxdg
, libstatgrab
, libsysstat
, lm_sensors
, lxqt-build-tools
, lxqt-globalkeys
2023-11-05 20:23:50 +00:00
, lxqt-menu-data
, gitUpdater
, menu-cache
, pcre
, qtbase
, qtsvg
, qttools
, qtx11extras
, solid
, xorg
2017-02-25 15:44:29 +00:00
}:
2016-10-03 22:03:59 +00:00
mkDerivation rec {
2016-10-03 22:03:59 +00:00
pname = "lxqt-panel";
2023-11-05 20:23:50 +00:00
version = "1.4.0";
2016-10-03 22:03:59 +00:00
2017-11-02 01:57:11 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:03:59 +00:00
repo = pname;
rev = version;
2023-11-05 20:23:50 +00:00
hash = "sha256-LQq1XOA0dGXXORVr2H/gI+axvCAd4P3nB4zCFYWgagc=";
2016-10-03 22:03:59 +00:00
};
2017-02-19 13:53:59 +00:00
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2023-11-05 20:23:50 +00:00
qttools
2017-02-19 13:53:59 +00:00
];
2016-10-03 22:03:59 +00:00
buildInputs = [
alsa-lib
2017-02-25 15:44:29 +00:00
kguiaddons
kwindowsystem
libXdamage
libdbusmenu
2017-02-25 15:44:29 +00:00
liblxqt
libpulseaudio
2017-02-25 15:44:29 +00:00
libqtxdg
2016-10-03 22:03:59 +00:00
libstatgrab
libsysstat
2016-10-03 22:03:59 +00:00
lm_sensors
lxqt-globalkeys
2023-11-05 20:23:50 +00:00
lxqt-menu-data
menu-cache
2017-11-02 01:57:11 +00:00
pcre
qtbase
qtsvg
qtx11extras
solid
xorg.libXdmcp
2022-04-16 19:16:31 +00:00
xorg.libXtst
xorg.libpthreadstubs
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-panel";
description = "The LXQt desktop panel";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 13:52:15 +00:00
maintainers = teams.lxqt.members;
2016-10-03 22:03:59 +00:00
};
}