scrcpy: make server display nicer in nix store diff-closure

Before it was displayed as:
scrcpy-server-v2.1: ε → ∅, -55.7 KiB
scrcpy-server-v2.1.1: ∅ → ε, +55.8 KiB

Now the version number is correct:
scrcpy-server: ∅ → 2.1.1, +55.8 KiB
This commit is contained in:
Sandro Jäckel 2023-07-16 19:29:10 +02:00
parent 406aa7bd80
commit 98686c14dc
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -18,6 +18,8 @@
let
version = "2.1.1";
prebuilt_server = fetchurl {
name = "scrcpy-server";
inherit version;
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}";
sha256 = "sha256-lVjbbFZ0Oh3AOzj1mAH7QOkcyJH4/AyJ5bCwZ3YfFI4=";
};