lxqt-common: init at 0.11.0
This commit is contained in:
parent
708dec170e
commit
74b3da7ce7
41
pkgs/desktops/lxqt/core/lxqt-common/default.nix
Normal file
41
pkgs/desktops/lxqt/core/lxqt-common/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt, xorg, hicolor_icon_theme, xmessage }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "lxqt-common";
|
||||||
|
version = "0.11.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "lxde";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "14nx3zcknwsn713wdnmb2xl15vf21vh13kxscdwmfnd48m5j4m3b";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qt5.qtx11extras
|
||||||
|
qt5.qttools
|
||||||
|
qt5.qtsvg
|
||||||
|
kde5.kwindowsystem
|
||||||
|
lxqt.liblxqt
|
||||||
|
lxqt.libqtxdg
|
||||||
|
hicolor_icon_theme
|
||||||
|
xmessage
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = lxqt.standardPatch
|
||||||
|
+ ''
|
||||||
|
substituteInPlace ./startlxqt.in \
|
||||||
|
--replace xmessage "${xmessage}"/bin/xmessage
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Common files for LXQt";
|
||||||
|
homepage = https://github.com/lxde/lxqt-common;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
@ -35,5 +35,6 @@ let
|
|||||||
libfm-qt = callPackage ./core/libfm-qt { };
|
libfm-qt = callPackage ./core/libfm-qt { };
|
||||||
lxqt-about = callPackage ./core/lxqt-about { };
|
lxqt-about = callPackage ./core/lxqt-about { };
|
||||||
lxqt-admin = callPackage ./core/lxqt-admin { };
|
lxqt-admin = callPackage ./core/lxqt-admin { };
|
||||||
|
lxqt-common = callPackage ./core/lxqt-common { };
|
||||||
|
|
||||||
in self
|
in self
|
||||||
|
Loading…
x
Reference in New Issue
Block a user