urserver: init at 3.6.0.745

gstqt5
Stefan Frijters 2020-08-09 11:41:19 +02:00 committed by Jon
parent 5ee08170d7
commit ef062c1297
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ stdenv
, fetchurl
, autoPatchelfHook
, bluez
, libX11
, libXtst
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "urserver";
version = "3.6.0.745";
src = fetchurl {
url = "https://www.unifiedremote.com/static/builds/server/linux-x64/745/urserver-${version}.tar.gz";
sha256 = "1ib9317bg9n4knwnlbrn1wfkyrjalj8js3a6h7zlcl8h8xc0szc8";
};
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
stdenv.cc.cc.lib
bluez
libX11
libXtst
makeWrapper
];
installPhase = ''
install -m755 -D urserver $out/bin/urserver
wrapProgram $out/bin/urserver --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath buildInputs}"
cp -r remotes $out/bin/remotes
cp -r manager $out/bin/manager
'';
meta = with stdenv.lib; {
homepage = "https://www.unifiedremote.com/";
description = "The one-and-only remote for your computer";
license = licenses.unfree;
maintainers = with maintainers; [ sfrijters ];
platforms = [ "x86_64-linux" ];
};
}

View File

@ -16778,6 +16778,8 @@ in
unifiStable;
unifi = unifiStable;
urserver = callPackage ../servers/urserver { };
victoriametrics = callPackage ../servers/nosql/victoriametrics { };
virtlyst = libsForQt5.callPackage ../servers/web-apps/virtlyst { };