nixpkgs/pkgs/misc/scrcpy/default.nix

71 lines
2.2 KiB
Nix
Raw Normal View History

2018-07-29 18:42:16 +00:00
{ stdenv, fetchurl, fetchFromGitHub, makeWrapper
, meson
, ninja
, pkgconfig
2019-08-24 10:52:48 +00:00
, fetchpatch
2018-07-29 18:42:16 +00:00
, platform-tools
2018-07-29 18:42:16 +00:00
, ffmpeg
, SDL2
}:
let
2019-08-24 10:52:48 +00:00
version = "1.10";
2018-07-29 18:42:16 +00:00
prebuilt_server = fetchurl {
2019-03-28 15:31:26 +00:00
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}.jar";
2019-08-24 10:52:48 +00:00
sha256 = "144k25x6ha89l9p5a1dm6r3fqvgqszzwrhvkvk0r44vg0i71msyb";
2018-07-29 18:42:16 +00:00
};
in
stdenv.mkDerivation rec {
2019-03-28 15:31:26 +00:00
pname = "scrcpy";
2018-07-29 18:42:16 +00:00
inherit version;
2019-03-28 15:31:26 +00:00
2018-07-29 18:42:16 +00:00
src = fetchFromGitHub {
owner = "Genymobile";
2019-03-28 15:31:26 +00:00
repo = pname;
rev = "v${version}";
2019-08-24 10:52:48 +00:00
sha256 = "0hhncqcs49n9g8sgvwbyvkaq4b1dhrpn7qgnaj6grjcb0i27vzaq";
2018-07-29 18:42:16 +00: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"
'';
2018-07-29 18:42:16 +00:00
nativeBuildInputs = [ makeWrapper meson ninja pkgconfig ];
buildInputs = [ ffmpeg SDL2 ];
2019-08-24 10:52:48 +00:00
# FIXME: remove on update to > 1.10
patches = [(fetchpatch {
url = "https://github.com/Genymobile/scrcpy/commit/c05056343b56be65ae887f8b7ead61a8072622b9.diff";
sha256 = "1xh24gr2g2i9rk0zyv19jx54hswrq12ssp227vxbhsbamin9ir5b";
})];
2018-07-29 18:42:16 +00:00
# Manually install the server jar to prevent Meson from "fixing" it
preConfigure = ''
echo -n > server/meson.build
'';
2019-08-24 10:52:48 +00:00
mesonFlags = [ "-Doverride_server_path=${prebuilt_server}" ];
2018-07-29 18:42:16 +00:00
postInstall = ''
mkdir -p "$out/share/scrcpy"
ln -s "${prebuilt_server}" "$out/share/scrcpy/scrcpy-server.jar"
# runtime dep on `adb` to push the server
wrapProgram "$out/bin/scrcpy" --prefix PATH : "${platform-tools}/bin"
2018-07-29 18:42:16 +00:00
'';
meta = with stdenv.lib; {
description = "Display and control Android devices over USB or TCP/IP";
homepage = https://github.com/Genymobile/scrcpy;
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ deltaevo lukeadams ];
};
}