这是我的打包代码
{
fetchurl,
stdenv,
unzip,
autoPatchelfHook,
glib,
nss,
gtk3,
xorg,
expat,
util-linux,
alsa-lib,
dbus,
cups,
}:
let
src = fetchurl {
url = "https://github.com/AntSwordProject/AntSword-Loader/releases/download/4.0.3/AntSword-Loader-v4.0.3-linux-x64.zip";
sha256 = "sha256-GP6CTOZ3nekmnQVsU/mJ9Tmy75MrjKMWJeqhgmLLPoE=";
};
libraries = [
xorg.libXtst
xorg.libXScrnSaver
glib
nss
gtk3
xorg.xorgserver
xorg.libX11
expat
util-linux
alsa-lib
dbus
cups
];
in
stdenv.mkDerivation rec {
pname = "antsword";
version = "0.7.1";
inherit src;
nativeBuildInputs = [
unzip
autoPatchelfHook
];
buildInputs = libraries;
unpackPhase = ''
unzip $src -d $out
'';
}
手动运行之后
NUR|master⚡ ⇒ ./result/AntSword-Loader-v4.0.3-linux-x64/AntSword
[1] 186721 trace trap (core dumped) ./result/AntSword-Loader-v4.0.3-linux-x64/AntSword
NUR|master⚡ ⇒
我接下来应该怎么办?
感谢各位大佬的帮助