3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/core/lxqt-panel/default.nix

59 lines
1.2 KiB
Nix
Raw Normal View History

2016-10-03 23:03:59 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, xorg,
libstatgrab, lm_sensors, libpulseaudio, alsaLib, menu-cache,
lxmenu-data }:
2016-10-03 23:03:59 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-panel";
2017-02-19 13:53:59 +00:00
version = "0.11.1";
2016-10-03 23:03:59 +01:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 13:53:59 +00:00
sha256 = "097rivly61i99v0w9a3dgbwbc4c5x9nh3jl0n94dix1qgd4w983y";
2016-10-03 23:03:59 +01:00
};
2017-02-19 13:53:59 +00:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-03 23:03:59 +01:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
qt5.qtsvg
qt5.libdbusmenu
kde5.kwindowsystem
kde5.solid
kde5.kguiaddons
2016-10-03 23:03:59 +01:00
lxqt.liblxqt
lxqt.libqtxdg
2017-02-19 13:53:59 +00:00
lxqt.lxqt-common
2016-10-03 23:03:59 +01:00
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;
platforms = with platforms; unix;
2017-02-19 13:53:59 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:03:59 +01:00
};
}