ykush: init at 1.2.5

Co-authored-by: Kate Temkin <k@ktemkin.com>
Co-authored-by: Aleksanaa <me@aleksana.moe>
This commit is contained in:
Burfeind, Jan-Niklas
2025-12-10 17:52:05 +01:00
parent 971c942483
commit 8fc87e66cf
2 changed files with 70 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Yepkit YKUSH3.
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="f11b", MODE="0666"
# Yepkit YKUSH2.
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="efed", MODE="0666"
# Yepkit YKUSHXs
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="f0cd", MODE="0666"
# Yepkit YKUSH(1).
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="f2f7", MODE="0666"
# Yepkit YKUSH-legacy.
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="0042", MODE="0666"
+56
View File
@@ -0,0 +1,56 @@
{
lib,
stdenv,
fetchFromGitHub,
libusb1,
runCommand,
versionCheckHook,
}:
stdenv.mkDerivation (final: {
pname = "ykushcmd";
version = "1.2.5";
buildInputs = [ libusb1 ];
src = fetchFromGitHub {
owner = "yepkit";
repo = "ykush";
tag = "${final.version}";
hash = "sha256-FbqlXh8A5hzpthBE3jZ1LLOMs4WcEGke3sOZi9vmZF8=";
};
installPhase = ''
runHook preInstall
install -D bin/ykushcmd $out/bin/ykushcmd
install -Dm444 ${./99-ykush.rules} $out/lib/udev/rules.d/99_ykush.rules
runHook postInstall
'';
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
passthru.tests = {
# We can't run any actual tests without hardware, but we can at least check the binary.
run-only = runCommand "${final.pname}-test" ''
${final}/bin/ykushcmd -h | grep YKUSHCMD
'';
};
meta = {
description = "Control utility for YepKit USB hubs";
longDescription = ''
controls the features of YepKit USB hubs, allowing one to arbitrarily
turn ports on and off and otherwise control the hub.
'';
homepage = "https://github.com/Yepkit/ykush";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
aiyion
ktemkin
];
mainProgram = "ykushcmd";
platforms = lib.platforms.linux;
};
})