97 lines
2 KiB
Nix
97 lines
2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
dpkg,
|
|
wrapGAppsHook3,
|
|
autoPatchelfHook,
|
|
nss,
|
|
nspr,
|
|
alsa-lib,
|
|
openssl,
|
|
webkitgtk_4_0,
|
|
udev,
|
|
libayatana-appindicator,
|
|
libGL,
|
|
}:
|
|
let
|
|
version = "1.5.12";
|
|
src =
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
selectSystem = attrs: attrs.${system};
|
|
suffix = selectSystem {
|
|
x86_64-linux = "amd64";
|
|
aarch64-linux = "arm64";
|
|
};
|
|
hash = selectSystem {
|
|
x86_64-linux = "sha256-1vJ2FcJOcpNyfSm5HyLkexsULBBPlI0AW2jXuhK8khA=";
|
|
aarch64-linux = "sha256-P+zCO6HxcQJAGIVxOSRga+1Bqtn31mw2v+/EyEDpgF8=";
|
|
};
|
|
in
|
|
fetchurl {
|
|
url = "https://github.com/mihomo-party-org/mihomo-party/releases/download/v${version}/mihomo-party-linux-${version}-${suffix}.deb";
|
|
inherit hash;
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit version src;
|
|
|
|
pname = "mihomo-party";
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
wrapGAppsHook3
|
|
autoPatchelfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
nss
|
|
nspr
|
|
alsa-lib
|
|
openssl
|
|
webkitgtk_4_0
|
|
(lib.getLib stdenv.cc.cc)
|
|
];
|
|
|
|
runtimeDependencies = map lib.getLib [
|
|
udev
|
|
libayatana-appindicator
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp -r opt/mihomo-party usr/share $out
|
|
substituteInPlace $out/share/applications/mihomo-party.desktop \
|
|
--replace-fail "/opt/mihomo-party/mihomo-party" "mihomo-party"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
preFixup = ''
|
|
mkdir $out/bin
|
|
makeWrapper $out/mihomo-party/mihomo-party $out/bin/mihomo-party \
|
|
--prefix LD_LIBRARY_PATH : "${
|
|
lib.makeLibraryPath [
|
|
libGL
|
|
]
|
|
}"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Another Mihomo GUI";
|
|
homepage = "https://github.com/mihomo-party-org/mihomo-party";
|
|
mainProgram = "mihomo-party";
|
|
platforms = [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
];
|
|
license = lib.licenses.gpl3Plus;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with lib.maintainers; [ aucub ];
|
|
};
|
|
}
|