mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
lxqt-panel: init at 0.11.0
This commit is contained in:
parent
5fc6923af7
commit
a5f681eca7
51
pkgs/desktops/lxqt/core/lxqt-panel/default.nix
Normal file
51
pkgs/desktops/lxqt/core/lxqt-panel/default.nix
Normal file
@ -0,0 +1,51 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, xorg,
|
||||
libstatgrab, lm_sensors, libpulseaudio, alsaLib, menu-cache, lxmenu-data }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lxqt-panel";
|
||||
version = "0.11.0";
|
||||
|
||||
srcs = fetchFromGitHub {
|
||||
owner = "lxde";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0lwgz6nir4cd50xbmc3arngnw38rb5kqgcsgp3dlq6gpncg45hdq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
buildInputs = [
|
||||
qt5.qtbase
|
||||
qt5.qttools
|
||||
qt5.qtx11extras
|
||||
qt5.qtsvg
|
||||
qt5.libdbusmenu
|
||||
kde5.kwindowsystem
|
||||
kde5.solid
|
||||
lxqt.liblxqt
|
||||
lxqt.libqtxdg
|
||||
lxqt.lxqt-globalkeys
|
||||
lxqt.libsysstat
|
||||
xorg.libpthreadstubs
|
||||
xorg.libXdmcp
|
||||
libstatgrab
|
||||
lm_sensors
|
||||
libpulseaudio
|
||||
alsaLib
|
||||
menu-cache
|
||||
lxmenu-data
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||
|
||||
postPatch = lxqt.standardPatch;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The LXQt desktop panel";
|
||||
homepage = https://github.com/lxde/lxqt-panel;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
@ -49,4 +49,7 @@ let
|
||||
pavucontrol-qt = callPackage ./core/pavucontrol-qt { };
|
||||
qtermwidget = callPackage ./core/qtermwidget { };
|
||||
|
||||
### CORE 2
|
||||
lxqt-panel = callPackage ./core/lxqt-panel { };
|
||||
|
||||
in self
|
||||
|
Loading…
Reference in New Issue
Block a user