mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
protobuf,
|
|
versionCheckHook,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "clash-rs";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Watfaq";
|
|
repo = "clash-rs";
|
|
rev = "v${version}";
|
|
hash = "sha256-0deMVI51XHTCrnLTycqDsaY5Lq+wx14uMUlkG5OViNA=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"boringtun-0.6.0" = "sha256-HBNo53b+CpCGmTXZYH4NBBvNmekyaBKAk1pSRzZdavg=";
|
|
"netstack-lwip-0.3.4" = "sha256-lcauDyaw5gAaECRcGNXQDHbWmnyxil18qWFkZ/p/C50=";
|
|
"rustls-0.23.12" = "sha256-grt94JG44MljRQRooVZbXL4h4XLI1/KoIdwGv03MoIU=";
|
|
"tokio-rustls-0.26.0" = "sha256-Bmi36j8hbR4kkY/xnHbluaInk+YH5/eTln0VYfHulGA=";
|
|
"tracing-oslog-0.2.0" = "sha256-JYaCslbVOgsyBhjeBkplPWcjSgFccjr4s6OAGIUu5kg=";
|
|
"tuic-1.3.1" = "sha256-WMd+O2UEu0AEI+gNeQtdBhEgIB8LPanoIpMcDAUUWrM=";
|
|
"tun-0.6.1" = "sha256-j4yQSu4Mw7DBFak8vJGQomYq81+pfaeEDdN4NNBve+E=";
|
|
"unix-udp-sock-0.7.0" = "sha256-TekBfaxecFPpOfq7PVjLHwc0uIp3yJGV/Cgav5VfKaA=";
|
|
};
|
|
};
|
|
|
|
env = {
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
# requires features: sync_unsafe_cell, unbounded_shifts, let_chains, ip
|
|
RUSTC_BOOTSTRAP = 1;
|
|
};
|
|
|
|
doInstallCheck = true;
|
|
|
|
dontCargoCheck = true; # test failed
|
|
|
|
versionCheckProgramArg = "--version";
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
buildFeatures = [
|
|
"shadowsocks"
|
|
"tuic"
|
|
"onion"
|
|
];
|
|
|
|
meta = {
|
|
description = "Custom protocol, rule based network proxy software";
|
|
homepage = "https://github.com/Watfaq/clash-rs";
|
|
mainProgram = "clash-rs";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ aucub ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|