nixpkgs/pkgs/by-name/he/headsetcontrol/package.nix

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

49 lines
1.2 KiB
Nix
Raw Normal View History

2021-12-26 21:38:49 +00:00
{ stdenv
, lib
, fetchFromGitHub
2024-04-08 17:59:19 +01:00
, fetchpatch
2021-12-26 21:38:49 +00:00
, cmake
, hidapi
}:
stdenv.mkDerivation rec {
pname = "headsetcontrol";
2024-04-08 17:59:19 +01:00
version = "3.0.0";
2021-12-26 21:38:49 +00:00
src = fetchFromGitHub {
owner = "Sapd";
repo = "HeadsetControl";
rev = version;
2024-04-08 17:59:19 +01:00
sha256 = "sha256-N1c94iAJgCPhGNDCGjMINg0AL2wPX5gVIsJ+pzn/l9Y=";
2021-12-26 21:38:49 +00:00
};
2024-04-08 17:59:19 +01:00
patches = [
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/Sapd/HeadsetControl/pull/337.patch";
hash = "sha256-18w9BQsMljEA/eY3rnosHvKwhiaF79TrWH/ayuyZMrM=";
})
];
2021-12-26 21:38:49 +00:00
nativeBuildInputs = [
cmake
];
buildInputs = [
hidapi
];
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 12:14:44 +01:00
mainProgram = "headsetcontrol";
2021-12-26 21:38:49 +00:00
maintainers = with maintainers; [ leixb ];
platforms = platforms.all;
};
}