kmousetool: init at 21.12.3 (#170594)
* kmousetool: init at 21.12.3 * kmousetool: add githubId in maintainers-list This should resolve an error thrown by ofborg * kmousetool: move meta attrset to the bottom
This commit is contained in:
parent
f7fd2ee680
commit
0b5aba3bbd
3 changed files with 42 additions and 0 deletions
|
@ -5605,6 +5605,12 @@
|
|||
githubId = 488556;
|
||||
name = "Javier Aguirre";
|
||||
};
|
||||
jayesh-bhoot = {
|
||||
name = "Jayesh Bhoot";
|
||||
email = "jayesh@bhoot.sh";
|
||||
github = "jayesh-bhoot";
|
||||
githubId = 1915507;
|
||||
};
|
||||
jb55 = {
|
||||
email = "jb55@jb55.com";
|
||||
github = "jb55";
|
||||
|
|
|
@ -154,6 +154,7 @@ let
|
|||
kmime = callPackage ./kmime.nix {};
|
||||
kmines = callPackage ./kmines.nix {};
|
||||
kmix = callPackage ./kmix.nix {};
|
||||
kmousetool = callPackage ./kmousetool.nix {};
|
||||
kmplot = callPackage ./kmplot.nix {};
|
||||
knavalbattle = callPackage ./knavalbattle.nix {};
|
||||
knetwalk = callPackage ./knetwalk.nix {};
|
||||
|
|
35
pkgs/applications/kde/kmousetool.nix
Normal file
35
pkgs/applications/kde/kmousetool.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, extra-cmake-modules
|
||||
, kdoctools
|
||||
, ki18n
|
||||
, kiconthemes
|
||||
, knotifications
|
||||
, kxmlgui
|
||||
, kwindowsystem
|
||||
, phonon
|
||||
, libXtst
|
||||
, libXt
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
pname = "kmousetool";
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
ki18n
|
||||
kiconthemes
|
||||
knotifications
|
||||
kxmlgui
|
||||
kwindowsystem
|
||||
phonon
|
||||
libXtst
|
||||
libXt
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/KDE/kmousetool";
|
||||
description = "Program that clicks the mouse for you";
|
||||
license = with lib.licenses; [ gpl2 fdl12 ];
|
||||
maintainers = [ lib.maintainers.jayesh-bhoot ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in a new issue