nixpkgs/pkgs/misc/scrcpy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.3 KiB
Nix
Raw Normal View History

2023-03-13 21:15:09 +00:00
{ lib
, stdenv
, fetchurl
, fetchFromGitHub
, makeWrapper
2018-07-29 18:42:16 +00:00
, meson
, ninja
2020-05-27 19:28:37 +00:00
, pkg-config
2022-12-22 20:28:56 +00:00
, runtimeShell
2022-02-23 08:00:24 +00:00
, installShellFiles
2018-07-29 18:42:16 +00:00
, android-tools
2020-08-08 19:13:53 +00:00
, ffmpeg
2021-11-14 11:54:55 +00:00
, libusb1
2018-07-29 18:42:16 +00:00
, SDL2
}:
let
2024-03-03 08:37:44 +00:00
version = "2.4";
2018-07-29 18:42:16 +00:00
prebuilt_server = fetchurl {
name = "scrcpy-server";
inherit version;
2019-12-20 06:26:47 +00:00
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}";
2024-03-03 08:37:44 +00:00
hash = "sha256-k8Jyt0OGBcBV4Sf3REBk7Xj6nKSfgRVnd/0gHnnOe6M=";
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";
2023-11-13 11:18:10 +00:00
repo = "scrcpy";
rev = "refs/tags/v${version}";
2024-03-03 08:37:44 +00:00
hash = "sha256-x1feZgCR3ZUi40/YZSjDULYk4W9Pjo17cn8RqcOoeoE=";
2018-07-29 18:42:16 +00:00
};
2023-06-22 07:04:12 +00:00
# display.c: When run without a hardware accelerator, this allows the command to continue working rather than failing unexpectedly.
2018-12-03 03:26:10 +00:00
# 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 = ''
2023-06-22 07:04:12 +00:00
substituteInPlace app/src/display.c \
2018-12-03 03:26:10 +00:00
--replace "SDL_RENDERER_ACCELERATED" "SDL_RENDERER_ACCELERATED || SDL_RENDERER_SOFTWARE"
'';
2022-02-23 08:00:24 +00:00
nativeBuildInputs = [ makeWrapper meson ninja pkg-config installShellFiles ];
2018-07-29 18:42:16 +00:00
buildInputs = [ ffmpeg SDL2 libusb1 ];
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
'';
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 18:42:16 +00:00
# runtime dep on `adb` to push the server
wrapProgram "$out/bin/scrcpy" --prefix PATH : "${android-tools}/bin"
2022-12-22 20:28:56 +00:00
'' + lib.optionalString stdenv.isLinux ''
substituteInPlace $out/share/applications/scrcpy-console.desktop \
--replace "/bin/bash" "${runtimeShell}"
2018-07-29 18:42:16 +00:00
'';
meta = with lib; {
2018-07-29 18:42:16 +00:00
description = "Display and control Android devices over USB or TCP/IP";
homepage = "https://github.com/Genymobile/scrcpy";
2023-11-13 11:17:12 +00:00
changelog = "https://github.com/Genymobile/scrcpy/releases/tag/v${version}";
sourceProvenance = with sourceTypes; [
fromSource
2023-03-13 21:15:09 +00:00
binaryBytecode # server
];
2018-07-29 18:42:16 +00:00
license = licenses.asl20;
platforms = platforms.unix;
2024-04-27 18:51:42 +00:00
maintainers = with maintainers; [ deltaevo ];
2023-11-23 21:09:35 +00:00
mainProgram = "scrcpy";
2018-07-29 18:42:16 +00:00
};
}