Remove sbx-h6-rgb

This commit is contained in:
Dave Gallant
2025-01-27 20:23:41 -05:00
parent 266401ceec
commit a5eae0df83
4 changed files with 0 additions and 41 deletions

View File

@@ -1,5 +1,4 @@
final: prev: {
cd-fzf = prev.callPackage ./cd-fzf { };
sbx-h6-rgb = prev.callPackage ./sbx-h6-rgb { };
vpngate = prev.callPackage ./vpngate { };
}

View File

@@ -1,35 +0,0 @@
{
lib,
fetchFromGitHub,
pkgs,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "sbx-h6-rgb";
version = "95b4ef9788ef94e557a4d1e815079d5ea8a70943";
src = fetchFromGitHub {
owner = "Oscillope";
repo = "sbx-h6-rgb";
rev = version;
sha256 = "sha256-tKKNdzijloBiGBHf5C604824B/BbxBxvCL/ms4orT9M=";
};
buildInputs = with pkgs; [ hidapi ];
buildPhase = ''
make
'';
installPhase = ''
install -D sbx-h6-ctl $out/bin/sbx-h6-ctl
'';
meta = with lib; {
description = "Creative SoundBlasterX RGB LED setter.";
license = licenses.gpl3;
maintainers = with maintainers; [ davegallant ];
platforms = platforms.linux;
};
}