lxqt-about: init at 0.11.0
This commit is contained in:
parent
44180b2cfa
commit
e76201b273
37
pkgs/desktops/lxqt/core/lxqt-about/default.nix
Normal file
37
pkgs/desktops/lxqt/core/lxqt-about/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt, xorg }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "lxqt-about";
|
||||||
|
version = "0.11.0";
|
||||||
|
|
||||||
|
srcs = fetchFromGitHub {
|
||||||
|
owner = "lxde";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0739gp3af68cvf8fxqvd203xqzncglmxpklq8mryrs5f1xnqp6gc";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qt5.qtx11extras
|
||||||
|
qt5.qttools
|
||||||
|
qt5.qtsvg
|
||||||
|
kde5.kwindowsystem
|
||||||
|
lxqt.liblxqt
|
||||||
|
lxqt.libqtxdg
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||||
|
|
||||||
|
postPatch = lxqt.standardPatch;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Dialogue window providing information about LXQt and the system it's running on";
|
||||||
|
homepage = https://github.com/lxde/lxqt-about;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
@ -33,5 +33,6 @@ let
|
|||||||
|
|
||||||
### CORE 1
|
### CORE 1
|
||||||
libfm-qt = callPackage ./core/libfm-qt { };
|
libfm-qt = callPackage ./core/libfm-qt { };
|
||||||
|
lxqt-about = callPackage ./core/lxqt-about { };
|
||||||
|
|
||||||
in self
|
in self
|
||||||
|
Loading…
x
Reference in New Issue
Block a user