Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
813 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
rustPlatform,
udev,
pkg-config,
}:
rustPlatform.buildRustPackage {
pname = "g933-utils";
version = "0-unstable-2021-11-19";
src = fetchFromGitHub {
owner = "ashkitten";
repo = "g933-utils";
rev = "1fc8cec375ed0d6f72191eadec788a49f51032d1";
sha256 = "sha256-kGLMRqZHzRuXQNTjIuLz8JPC1c/ZK38msfkTIVnaomg=";
};
cargoHash = "sha256-xjn9EHYa8LJnj3GCZuug4IznxNCLzb9dtEnoQHRcdh8=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ udev ];
meta = with lib; {
description = "Application to configure Logitech wireless G933/G533 headsets";
homepage = "https://github.com/ashkitten/g933-utils";
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
platforms = platforms.linux;
mainProgram = "g933-utils";
};
}