mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-06 23:31:34 +00:00
16 lines
375 B
Nix
16 lines
375 B
Nix
{ kde, cmake, qt4, kdelibs, automoc4, phonon, libXtst }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake qt4 kdelibs automoc4 phonon libXtst ];
|
|
|
|
meta = {
|
|
description = "A program that clicks the mouse for you";
|
|
kde = {
|
|
name = "kmousetool";
|
|
module = "kdeaccessibility";
|
|
version = "1.12";
|
|
versionFile = "kmousetool/kmousetool/version.h";
|
|
};
|
|
};
|
|
}
|