2022-11-02 22:02:43 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, symlinkJoin
|
|
|
|
, buildGoModule
|
|
|
|
, makeWrapper
|
|
|
|
, nix-update-script
|
|
|
|
, v2ray-geoip
|
|
|
|
, v2ray-domain-list-community
|
|
|
|
, assets ? [ v2ray-geoip v2ray-domain-list-community ]
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "xray";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.8.24";
|
2022-11-02 22:02:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "XTLS";
|
|
|
|
repo = "Xray-core";
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-gteiRkdCuRTBkzljQgxo6oMvr1t2aUgeBIXQikwYtdE=";
|
2022-11-02 22:02:43 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
vendorHash = "sha256-GyzZI0NaOm2GBqrqzXYpv1ml12iBvHMyu2y7A3UwdPY=";
|
2022-11-02 22:02:43 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2024-01-25 14:12:00 +00:00
|
|
|
ldflags = [ "-s" "-w" ];
|
2022-11-02 22:02:43 +00:00
|
|
|
subPackages = [ "main" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
install -Dm555 "$GOPATH"/bin/main $out/bin/xray
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
assetsDrv = symlinkJoin {
|
|
|
|
name = "v2ray-assets";
|
|
|
|
paths = assets;
|
|
|
|
};
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/xray \
|
2024-06-05 15:53:02 +00:00
|
|
|
--set-default V2RAY_LOCATION_ASSET $assetsDrv/share/v2ray \
|
|
|
|
--set-default XRAY_LOCATION_ASSET $assetsDrv/share/v2ray
|
2022-11-02 22:02:43 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
2022-12-28 21:21:41 +00:00
|
|
|
updateScript = nix-update-script { };
|
2022-11-02 22:02:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Platform for building proxies to bypass network restrictions. A replacement for v2ray-core, with XTLS support and fully compatible configuration";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "xray";
|
2022-11-02 22:02:43 +00:00
|
|
|
homepage = "https://github.com/XTLS/Xray-core";
|
|
|
|
license = with lib.licenses; [ mpl20 ];
|
|
|
|
maintainers = with lib.maintainers; [ iopq ];
|
|
|
|
};
|
|
|
|
}
|