bilibili: 1.13.2-1 -> 1.13.5-2

This commit is contained in:
wxt
2024-06-10 17:27:53 +08:00
parent 7bc2869094
commit 0cb601e32c
+4 -3
View File
@@ -2,22 +2,23 @@
, stdenv
, fetchurl
, electron
, zstd
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "bilibili";
version = "1.13.2-1";
version = "1.13.5-2";
src = fetchurl {
url = "https://github.com/msojocs/bilibili-linux/releases/download/v${version}/io.github.msojocs.bilibili_${version}_amd64.deb";
hash = "sha256-yqgQNsTD4iT54LJYEbV6dk7OD7KoZvX61XERYQ4MsSA=";
hash = "sha256-4p5izaQsax4i2/AnjivDVoY205ITmEx48GhblPOZDjk=";
};
unpackPhase = ''
runHook preUnpack
ar x $src
tar xf data.tar.xz
tar -I ${zstd}/bin/zstd -xvf data.tar.zst
runHook postUnpack
'';