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
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
autoPatchelfHook,
|
|
bluez,
|
|
libX11,
|
|
libXtst,
|
|
makeWrapper,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "urserver";
|
|
version = "3.14.0.2574";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.unifiedremote.com/static/builds/server/linux-x64/${builtins.elemAt (builtins.splitVersion finalAttrs.version) 3}/urserver-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-4wA2VPb5QN30TWa72pUVTYfvsxlGTO8Vngh7wDHXhDE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [ (lib.getLib stdenv.cc.cc) ];
|
|
|
|
installPhase = ''
|
|
install -m755 -D urserver $out/bin/urserver
|
|
wrapProgram $out/bin/urserver --prefix LD_LIBRARY_PATH : "${
|
|
lib.makeLibraryPath [
|
|
libX11
|
|
libXtst
|
|
bluez
|
|
]
|
|
}"
|
|
cp -r remotes $out/bin/remotes
|
|
cp -r manager $out/bin/manager
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://www.unifiedremote.com/";
|
|
description = "One-and-only remote for your computer";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [ sfrijters ];
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "urserver";
|
|
};
|
|
})
|