Merge pull request #330295 from DavSanchez/derivation/kontroll

kontroll: init at 1.0.1
This commit is contained in:
h7x4 2024-08-24 01:24:50 +02:00 committed by GitHub
commit f246401ef7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,30 @@
{
lib,
rustPlatform,
fetchFromGitHub,
protobuf,
}:
rustPlatform.buildRustPackage rec {
pname = "kontroll";
version = "1.0.1";
src = fetchFromGitHub {
owner = "zsa";
repo = "kontroll";
rev = version;
hash = "sha256-k7Twbjl8umk3PeIv3ivCLdhZFgTTV8WdfIAoGAD/pEk=";
};
cargoHash = "sha256-931PmSvcXTjxdIQUCSxLwFnaHgRrFzA/v6yYTvkjNoQ=";
nativeBuildInputs = [ protobuf ];
meta = {
description = "Kontroll demonstates how to control the Keymapp API, making it easy to control your ZSA keyboard from the command line and scripts";
homepage = "https://github.com/zsa/kontroll";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ davsanchez ];
mainProgram = "kontroll";
};
}