2018-07-29 19:42:16 +01:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, makeWrapper
|
|
|
|
, meson
|
|
|
|
, ninja
|
2020-05-27 20:28:37 +01:00
|
|
|
, pkg-config
|
2019-08-24 11:52:48 +01:00
|
|
|
, fetchpatch
|
2018-07-29 19:42:16 +01:00
|
|
|
|
2018-11-18 12:51:06 +00:00
|
|
|
, platform-tools
|
2020-06-07 13:39:09 +01:00
|
|
|
, ffmpeg_3
|
2018-07-29 19:42:16 +01:00
|
|
|
, SDL2
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2020-05-27 20:28:37 +01:00
|
|
|
version = "1.14";
|
2018-07-29 19:42:16 +01:00
|
|
|
prebuilt_server = fetchurl {
|
2019-12-20 06:26:47 +00:00
|
|
|
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}";
|
2020-05-27 20:28:37 +01:00
|
|
|
sha256 = "082n57a9lw39lfjxybgim09qf0id9m0rpfb3zmqng58fp2i1h6qx";
|
2018-07-29 19:42:16 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-28 15:31:26 +00:00
|
|
|
pname = "scrcpy";
|
2018-07-29 19:42:16 +01:00
|
|
|
inherit version;
|
2019-03-28 15:31:26 +00:00
|
|
|
|
2018-07-29 19:42:16 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Genymobile";
|
2019-03-28 15:31:26 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-05-27 20:28:37 +01:00
|
|
|
sha256 = "1w06gsvgjdbpb9lvvhpjwmysxjl0daiigjfh3cxfgz88447bgw7j";
|
2018-07-29 19:42:16 +01:00
|
|
|
};
|
|
|
|
|
2018-12-03 03:26:10 +00:00
|
|
|
# postPatch:
|
|
|
|
# screen.c: When run without a hardware accelerator, this allows the command to continue working rather than failing unexpectedly.
|
|
|
|
# This can happen when running on non-NixOS because then scrcpy seems to have a hard time using the host OpenGL-supporting hardware.
|
|
|
|
# It would be better to fix the OpenGL problem, but that seems much more intrusive.
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace app/src/screen.c \
|
|
|
|
--replace "SDL_RENDERER_ACCELERATED" "SDL_RENDERER_ACCELERATED || SDL_RENDERER_SOFTWARE"
|
|
|
|
'';
|
|
|
|
|
2020-05-27 20:28:37 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper meson ninja pkg-config ];
|
2018-07-29 19:42:16 +01:00
|
|
|
|
2020-06-07 13:39:09 +01:00
|
|
|
buildInputs = [ ffmpeg_3 SDL2 ];
|
2018-07-29 19:42:16 +01:00
|
|
|
|
|
|
|
# Manually install the server jar to prevent Meson from "fixing" it
|
|
|
|
preConfigure = ''
|
|
|
|
echo -n > server/meson.build
|
|
|
|
'';
|
|
|
|
|
2019-08-24 11:52:48 +01:00
|
|
|
mesonFlags = [ "-Doverride_server_path=${prebuilt_server}" ];
|
2018-07-29 19:42:16 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p "$out/share/scrcpy"
|
2019-12-20 06:26:47 +00:00
|
|
|
ln -s "${prebuilt_server}" "$out/share/scrcpy/scrcpy-server"
|
2018-07-29 19:42:16 +01:00
|
|
|
|
|
|
|
# runtime dep on `adb` to push the server
|
2018-11-18 12:51:06 +00:00
|
|
|
wrapProgram "$out/bin/scrcpy" --prefix PATH : "${platform-tools}/bin"
|
2018-07-29 19:42:16 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Display and control Android devices over USB or TCP/IP";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Genymobile/scrcpy";
|
2018-07-29 19:42:16 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ deltaevo lukeadams ];
|
|
|
|
};
|
|
|
|
}
|