nixpkgs/pkgs/tools/networking/v2ray/default.nix

90 lines
2.3 KiB
Nix
Raw Normal View History

2020-09-07 19:23:12 +00:00
{ lib, fetchFromGitHub, fetchurl, linkFarm, buildGoModule, runCommand, makeWrapper, nixosTests
2019-10-02 19:05:07 +00:00
, assetOverrides ? {}
2020-09-07 19:23:12 +00:00
}:
2019-10-02 19:05:07 +00:00
2020-09-07 19:23:12 +00:00
let
2021-09-12 13:55:03 +00:00
version = "4.42.1";
2019-10-02 19:05:07 +00:00
src = fetchFromGitHub {
2020-11-09 17:08:43 +00:00
owner = "v2fly";
2019-10-02 19:05:07 +00:00
repo = "v2ray-core";
rev = "v${version}";
2021-09-12 13:55:03 +00:00
sha256 = "19xkbkzv9bgj68kmvrxsdqzx40vlyvzl8nn2n19hwwmkrazqgf04";
2019-10-02 19:05:07 +00:00
};
2021-09-12 13:55:03 +00:00
vendorSha256 = "sha256-N1DYV0zSzCepkRMbcQUHqjITvmGahYKNn1uhL+csMSc=";
2019-10-02 19:05:07 +00:00
assets = {
# MIT licensed
"geoip.dat" = let
2021-09-12 13:55:03 +00:00
geoipRev = "202109102251";
geoipSha256 = "0qh8yf0m6sna3z5i2plbgw61q08qcfcx0l1z5bmwxijagf1yb7fa";
2019-10-02 19:05:07 +00:00
in fetchurl {
2020-11-09 17:08:43 +00:00
url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat";
2019-10-02 19:05:07 +00:00
sha256 = geoipSha256;
};
# MIT licensed
"geosite.dat" = let
2021-09-12 13:55:03 +00:00
geositeRev = "20210910080130";
geositeSha256 = "0d6bzrs5mhca59j1w73kqw10jqkwic9ywm3jvszpd077qwh64dwn";
2019-10-02 19:05:07 +00:00
in fetchurl {
2020-11-09 17:08:43 +00:00
url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat";
2019-10-02 19:05:07 +00:00
sha256 = geositeSha256;
};
} // assetOverrides;
2020-09-07 19:23:12 +00:00
assetsDrv = linkFarm "v2ray-assets" (lib.mapAttrsToList (name: path: {
inherit name path;
}) assets);
core = buildGoModule rec {
pname = "v2ray-core";
inherit version src;
inherit vendorSha256;
doCheck = false;
buildPhase = ''
2021-01-08 19:23:06 +00:00
buildFlagsArray=(-v -p $NIX_BUILD_CORES -ldflags="-s -w")
2020-09-07 19:23:12 +00:00
runHook preBuild
2021-01-08 19:23:06 +00:00
go build "''${buildFlagsArray[@]}" -o v2ray ./main
go build "''${buildFlagsArray[@]}" -o v2ctl -tags confonly ./infra/control/main
2020-09-07 19:23:12 +00:00
runHook postBuild
'';
installPhase = ''
install -Dm755 v2ray v2ctl -t $out/bin
'';
2020-11-09 17:08:43 +00:00
meta = {
2020-12-07 16:05:33 +00:00
homepage = "https://www.v2fly.org/en_US/";
2020-11-09 17:08:43 +00:00
description = "A platform for building proxies to bypass network restrictions";
2020-12-07 16:05:33 +00:00
license = with lib.licenses; [ mit ];
2020-11-09 17:08:43 +00:00
maintainers = with lib.maintainers; [ servalcatty ];
};
2020-09-07 19:23:12 +00:00
};
in runCommand "v2ray-${version}" {
inherit src version;
2020-11-09 17:08:43 +00:00
inherit (core) meta;
2020-09-07 19:23:12 +00:00
nativeBuildInputs = [ makeWrapper ];
passthru = {
2020-12-07 16:05:33 +00:00
inherit core;
2020-09-07 19:23:12 +00:00
updateScript = ./update.sh;
tests = {
simple-vmess-proxy-test = nixosTests.v2ray;
};
};
} ''
for file in ${core}/bin/*; do
makeWrapper "$file" "$out/bin/$(basename "$file")" \
--set-default V2RAY_LOCATION_ASSET ${assetsDrv}
done
2020-09-07 19:35:26 +00:00
''