clash-verge-rev: 1.6.6 -> 1.7.2

Diff: https://github.com/clash-verge-rev/clash-verge-rev/compare/v1.6.6...v1.7.2
This commit is contained in:
Guanran Wang 2024-07-03 14:38:29 +08:00
parent f32dd9ae98
commit fb067171b2
No known key found for this signature in database
GPG Key ID: 91F97D9ED12639CF

View File

@ -1,19 +1,66 @@
{ lib
, clash-verge
, fetchurl
{
lib,
autoPatchelfHook,
clash-meta,
dpkg,
fetchurl,
libayatana-appindicator,
nix-update-script,
openssl,
stdenv,
udev,
webkitgtk,
wrapGAppsHook3,
}:
clash-verge.overrideAttrs (old: rec {
stdenv.mkDerivation (finalAttrs: {
pname = "clash-verge-rev";
version = "1.6.6";
version = "1.7.2";
src = fetchurl {
url = "https://github.com/clash-verge-rev/clash-verge-rev/releases/download/v${version}/clash-verge_${version}_amd64.deb";
hash = "sha256-x+Xkasg6Yzft5CLg2YFCRkgpDeiVvvdmcLjrg+oIOT8=";
url = "https://github.com/clash-verge-rev/clash-verge-rev/releases/download/v${finalAttrs.version}/clash-verge_${finalAttrs.version}_amd64.deb";
hash = "sha256-AYWX2kfknhKZ7gmi50mu9VM3kz+Rufwpyt2QTyD4wUo=";
};
meta = old.meta // (with lib; {
nativeBuildInputs = [
dpkg
wrapGAppsHook3
autoPatchelfHook
];
buildInputs = [
openssl
webkitgtk
];
runtimeDependencies = [
(lib.getLib udev)
libayatana-appindicator
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv usr/* $out
runHook postInstall
'';
postFixup = ''
rm -f $out/bin/verge-mihomo
ln -sf ${lib.getExe clash-meta} $out/bin/verge-mihomo
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Clash GUI based on tauri";
homepage = "https://github.com/clash-verge-rev/clash-verge-rev";
maintainers = with maintainers; [ Guanran928 ];
});
license = lib.licenses.gpl3Plus;
mainProgram = "clash-verge";
maintainers = with lib.maintainers; [ Guanran928 ];
platforms = [ "x86_64-linux" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})