Merge pull request #299033 from SFrijters/urserver-3.13

urserver: 3.10.0.2467 -> 3.13.0.2505
This commit is contained in:
Mario Rodas 2024-04-16 06:54:43 -05:00 committed by GitHub
commit 0d661da33c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ in {
allowedUDPPorts = [ 9511 9512 ]; allowedUDPPorts = [ 9511 9512 ];
}; };
systemd.user.services.urserver = { systemd.user.services.urserver = {
description = '' description = ''
Server for Unified Remote: The one-and-only remote for your computer. Server for Unified Remote: The one-and-only remote for your computer.
''; '';

View File

@ -7,13 +7,13 @@
, makeWrapper , makeWrapper
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "urserver"; pname = "urserver";
version = "3.10.0.2467"; version = "3.13.0.2505";
src = fetchurl { src = fetchurl {
url = "https://www.unifiedremote.com/static/builds/server/linux-x64/${builtins.elemAt (builtins.splitVersion version) 3}/urserver-${version}.tar.gz"; url = "https://www.unifiedremote.com/static/builds/server/linux-x64/${builtins.elemAt (builtins.splitVersion finalAttrs.version) 3}/urserver-${finalAttrs.version}.tar.gz";
sha256 = "sha256-IaLRhia6mb4h7x5MbBRtPJxJ3uTlkfOzmoTwYzwfbWA="; hash = "sha256-rklv6Ppha1HhEPunbL8ELYdQ9Z1FN4FrVsNwny3/gA4=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
install -m755 -D urserver $out/bin/urserver install -m755 -D urserver $out/bin/urserver
wrapProgram $out/bin/urserver --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" wrapProgram $out/bin/urserver --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath finalAttrs.buildInputs}"
cp -r remotes $out/bin/remotes cp -r remotes $out/bin/remotes
cp -r manager $out/bin/manager cp -r manager $out/bin/manager
''; '';
@ -43,4 +43,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ sfrijters ]; maintainers = with maintainers; [ sfrijters ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };
} })