forked from mirrors/nixpkgs
scrcpy: 1.19 -> 1.20
This commit is contained in:
parent
05abd836d2
commit
9c83343bb8
|
@ -6,14 +6,15 @@
|
||||||
|
|
||||||
, platform-tools
|
, platform-tools
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
|
, libusb1
|
||||||
, SDL2
|
, SDL2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.19";
|
version = "1.20";
|
||||||
prebuilt_server = fetchurl {
|
prebuilt_server = fetchurl {
|
||||||
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}";
|
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}";
|
||||||
sha256 = "sha256-h2+TIhguaqxqWNsTNPQiWFXvOhfq68gKq2YB2dHsuGc=";
|
sha256 = "sha256-sgruSVH5mwYMSkQAC6lN6XP5YEdY72K+slOzcarT3zQ=";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
owner = "Genymobile";
|
owner = "Genymobile";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-IR4FTbVtHp9rRm0U4d1zkl0u+oR5FeElJ91NIspSKWg=";
|
sha256 = "sha256-yj/hpndVC1oInrYmCSKQix1kNWy/GpAlmO/6o3vvQQE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# postPatch:
|
# postPatch:
|
||||||
|
@ -38,7 +39,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper meson ninja pkg-config ];
|
nativeBuildInputs = [ makeWrapper meson ninja pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ ffmpeg SDL2 ];
|
buildInputs = [ ffmpeg SDL2 ] ++ lib.optionals stdenv.isLinux [
|
||||||
|
libusb1
|
||||||
|
];
|
||||||
|
|
||||||
# Manually install the server jar to prevent Meson from "fixing" it
|
# Manually install the server jar to prevent Meson from "fixing" it
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
Loading…
Reference in a new issue