Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
81 lines
2.1 KiB
Nix
81 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
makeDesktopItem,
|
|
copyDesktopItems,
|
|
fetchFromGitHub,
|
|
writeText,
|
|
qt6,
|
|
libusb1,
|
|
}:
|
|
let
|
|
# Based on upstream instructions: https://github.com/TechxArtisanStudio/Openterface_QT#for-linux-users
|
|
udevRules = writeText "60-openterface.rules" ''
|
|
# Serial to HID converter for keyboard/mouse control.
|
|
# ID 1a86:7523 QinHeng Electronics CH340 serial converter
|
|
KERNEL=="ttyUSB[0-9]*", ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="7523", TAG+="uaccess"
|
|
|
|
# "hidraw" device for accessing the host-target toggleable USB port.
|
|
# ID 534d:2109 MacroSilicon Openterface
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="534d", ATTRS{idProduct}=="2109", TAG+="uaccess"
|
|
'';
|
|
in
|
|
stdenv.mkDerivation (final: {
|
|
pname = "openterface-qt";
|
|
version = "0.3.18";
|
|
src = fetchFromGitHub {
|
|
owner = "TechxArtisanStudio";
|
|
repo = "Openterface_QT";
|
|
rev = "${final.version}";
|
|
hash = "sha256-yD71UOi6iRd9N3NeASUzqoeHMcTYIqkysAfxRm7GkOA=";
|
|
};
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
qt6.wrapQtAppsHook
|
|
qt6.qmake
|
|
qt6.qttools
|
|
];
|
|
buildInputs = [
|
|
libusb1
|
|
qt6.qtbase
|
|
qt6.qtmultimedia
|
|
qt6.qtserialport
|
|
qt6.qtsvg
|
|
];
|
|
preBuild = ''
|
|
lrelease openterfaceQT.pro
|
|
'';
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp ./openterfaceQT $out/bin/
|
|
mkdir -p $out/share/pixmaps
|
|
cp ./images/icon_256.png $out/share/pixmaps/openterface-qt.png
|
|
mkdir -p $out/etc/udev/rules.d
|
|
cp ${udevRules} $out/etc/udev/rules.d/60-openterface.rules
|
|
runHook postInstall
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "openterfaceQT";
|
|
exec = "openterfaceQT";
|
|
icon = final.pname;
|
|
comment = final.meta.description;
|
|
desktopName = "Openterface QT";
|
|
categories = [ "Utility" ];
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
description = "Openterface mini-KVM host application for linux";
|
|
homepage = "https://github.com/TechxArtisanStudio/Openterface_QT";
|
|
license = lib.licenses.agpl3Only;
|
|
mainProgram = "openterfaceQT";
|
|
maintainers = with lib.maintainers; [ samw ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|