mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-03 11:37:02 +00:00
lxqt-globalkeys: init at 0.11.0
This commit is contained in:
parent
2537f81ed0
commit
0d68fecae7
2 changed files with 39 additions and 0 deletions
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-admin = callPackage ./core/lxqt-admin { };
|
||||||
lxqt-common = callPackage ./core/lxqt-common { };
|
lxqt-common = callPackage ./core/lxqt-common { };
|
||||||
lxqt-config = callPackage ./core/lxqt-config { };
|
lxqt-config = callPackage ./core/lxqt-config { };
|
||||||
|
lxqt-globalkeys = callPackage ./core/lxqt-globalkeys { };
|
||||||
|
|
||||||
in self
|
in self
|
||||||
|
|
Loading…
Add table
Reference in a new issue