nixpkgs/pkgs/by-name/uh/uhk-agent/package.nix

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

80 lines
2.2 KiB
Nix
Raw Normal View History

2023-11-07 15:27:49 +00:00
{ lib
2024-02-10 15:45:30 +00:00
, stdenv
2023-11-07 15:27:49 +00:00
, stdenvNoCC
, fetchurl
, appimageTools
, electron
, makeWrapper
, asar
, autoPatchelfHook
, libusb1
}:
let
pname = "uhk-agent";
2024-05-04 03:48:35 +00:00
version = "4.1.0";
2023-11-07 15:27:49 +00:00
src = fetchurl {
url = "https://github.com/UltimateHackingKeyboard/agent/releases/download/v${version}/UHK.Agent-${version}-linux-x86_64.AppImage";
name = "${pname}-${version}.AppImage";
2024-05-04 03:48:35 +00:00
sha256 = "sha256-5VzUSuq+yc8HXSILMg24w/hbwasf4jq0H0wte9Mw+nY=";
};
appimageContents = appimageTools.extract {
2024-06-29 04:30:58 +00:00
inherit pname version src;
};
2023-11-07 15:27:49 +00:00
in
stdenvNoCC.mkDerivation {
inherit pname version src;
2023-11-07 15:27:49 +00:00
dontUnpack = true;
nativeBuildInputs = [
asar
makeWrapper
autoPatchelfHook
];
buildInputs = [
(lib.getLib stdenv.cc.cc)
2023-11-07 15:27:49 +00:00
libusb1
];
autoPatchelfIgnoreMissingDeps = [
"libc.musl-x86_64.so.1"
];
2023-11-07 15:27:49 +00:00
installPhase = ''
runHook preInstall
mkdir -p "$out"/{opt,share/applications}
cp -r --no-preserve=mode "${appimageContents}/resources" "$out/opt/${pname}"
cp -r --no-preserve=mode "${appimageContents}/usr/share/icons" "$out/share/icons"
cp -r --no-preserve=mode "${appimageContents}/${pname}.desktop" "$out/share/applications/${pname}.desktop"
substituteInPlace "$out/share/applications/${pname}.desktop" \
--replace "Exec=AppRun" "Exec=${pname}"
asar extract "$out/opt/${pname}/app.asar" "$out/opt/${pname}/app.asar.unpacked"
rm "$out/opt/${pname}/app.asar"
2023-11-07 15:27:49 +00:00
makeWrapper "${electron}/bin/electron" "$out/bin/${pname}" \
--add-flags "$out/opt/${pname}/app.asar.unpacked" \
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" \
2023-11-07 15:27:49 +00:00
--set-default ELECTRON_IS_DEV 0 \
--inherit-argv0
2023-11-07 15:27:49 +00:00
runHook postInstall
'';
meta = with lib; {
description = "Agent is the configuration application of the Ultimate Hacking Keyboard";
homepage = "https://github.com/UltimateHackingKeyboard/agent";
license = licenses.unfreeRedistributable;
2023-10-09 14:42:21 +00:00
maintainers = with maintainers; [ ngiger nickcao ];
platforms = [ "x86_64-linux" ];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
};
}