nixpkgs/pkgs/applications/kde/kmousetool.nix
Jayesh Bhoot 0b5aba3bbd
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
2022-04-28 11:05:11 +02:00

36 lines
609 B
Nix

{ 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 ];
};
}