nixpkgs/pkgs/tools/audio/headsetcontrol/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2021-12-26 22:38:49 +01:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
, hidapi
}:
stdenv.mkDerivation rec {
pname = "headsetcontrol";
2023-05-02 12:30:51 +02:00
version = "2.7.0";
2021-12-26 22:38:49 +01:00
src = fetchFromGitHub {
owner = "Sapd";
repo = "HeadsetControl";
rev = version;
2023-05-02 12:30:51 +02:00
sha256 = "sha256-tAndkfLEgj81JWzXtDBNspRxzKAL6XaRw0aDI1XbC1E=";
2021-12-26 22:38:49 +01:00
};
nativeBuildInputs = [
cmake
];
buildInputs = [
hidapi
];
/*
2023-05-02 12:30:51 +02:00
Tests depend on having the appropriate headsets connected.
2021-12-26 22:38:49 +01:00
*/
doCheck = false;
meta = with lib; {
description = "Sidetone and Battery status for Logitech G930, G533, G633, G933 SteelSeries Arctis 7/PRO 2019 and Corsair VOID (Pro)";
longDescription = ''
A tool to control certain aspects of USB-connected headsets on Linux. Currently,
support is provided for adjusting sidetone, getting battery state, controlling
LEDs, and setting the inactive time.
'';
homepage = "https://github.com/Sapd/HeadsetControl";
license = licenses.gpl3Plus;
2023-10-12 13:14:44 +02:00
mainProgram = "headsetcontrol";
2021-12-26 22:38:49 +01:00
maintainers = with maintainers; [ leixb ];
platforms = platforms.all;
};
}