mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
lxqt-globalkeys: init at 0.11.0
This commit is contained in:
parent
2537f81ed0
commit
0d68fecae7
38
pkgs/desktops/lxqt/core/lxqt-globalkeys/default.nix
Normal file
38
pkgs/desktops/lxqt/core/lxqt-globalkeys/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lxqt-globalkeys";
|
||||
version = "0.11.0";
|
||||
|
||||
srcs = fetchFromGitHub {
|
||||
owner = "lxde";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "05kcq21fyz7vnhh9k4nzhskgbghp1slsz14gh9anhya4a567xx0y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [
|
||||
qt5.qtbase
|
||||
qt5.qttools
|
||||
qt5.qtx11extras
|
||||
qt5.qtsvg
|
||||
kde5.kwindowsystem
|
||||
lxqt.liblxqt
|
||||
lxqt.libqtxdg
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||
|
||||
postPatch = lxqt.standardPatch;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Daemon used to register global keyboard shortcuts";
|
||||
homepage = https://github.com/lxde/lxqt-globalkeys;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
@ -37,5 +37,6 @@ let
|
||||
lxqt-admin = callPackage ./core/lxqt-admin { };
|
||||
lxqt-common = callPackage ./core/lxqt-common { };
|
||||
lxqt-config = callPackage ./core/lxqt-config { };
|
||||
lxqt-globalkeys = callPackage ./core/lxqt-globalkeys { };
|
||||
|
||||
in self
|
||||
|
Loading…
Reference in New Issue
Block a user