98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
19 lines
506 B
Nix
19 lines
506 B
Nix
{ lib
|
|
, clash-verge
|
|
, fetchurl
|
|
}:
|
|
|
|
clash-verge.overrideAttrs (old: rec {
|
|
pname = "clash-verge-rev";
|
|
version = "1.6.6";
|
|
|
|
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=";
|
|
};
|
|
|
|
meta = old.meta // (with lib; {
|
|
homepage = "https://github.com/clash-verge-rev/clash-verge-rev";
|
|
maintainers = with maintainers; [ Guanran928 ];
|
|
});
|
|
})
|