lxqt-runner: init at 0.11.0
This commit is contained in:
parent
a5f681eca7
commit
cb8908d807
39
pkgs/desktops/lxqt/core/lxqt-runner/default.nix
Normal file
39
pkgs/desktops/lxqt/core/lxqt-runner/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt,
|
||||
menu-cache, muparser }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lxqt-runner";
|
||||
version = "0.11.0";
|
||||
|
||||
srcs = fetchFromGitHub {
|
||||
owner = "lxde";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1gqs1b90km39dbg49g80x770i9jknni4h8y6ka2r1fga35amllkc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
buildInputs = [
|
||||
qt5.qtbase
|
||||
qt5.qttools
|
||||
qt5.qtsvg
|
||||
kde5.kwindowsystem
|
||||
lxqt.liblxqt
|
||||
lxqt.libqtxdg
|
||||
lxqt.lxqt-globalkeys
|
||||
menu-cache
|
||||
muparser
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tool used to launch programs quickly by typing their names";
|
||||
homepage = https://github.com/lxde/lxqt-runner;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
@ -51,5 +51,6 @@ let
|
||||
|
||||
### CORE 2
|
||||
lxqt-panel = callPackage ./core/lxqt-panel { };
|
||||
lxqt-runner = callPackage ./core/lxqt-runner { };
|
||||
|
||||
in self
|
||||
|
Loading…
x
Reference in New Issue
Block a user