5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security, CoreServices }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "shadowsocks-rust";
|
|
version = "1.18.4";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "shadowsocks";
|
|
repo = pname;
|
|
hash = "sha256-1gZP0PVvYWEfWmTVql+8uyNhcjawBMJKvqy/4sZ0/6Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-GZuRz4VtAm+aQO0Hq5v3HVfqjoMPsEw5G6VADsAvdEQ=";
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ Security CoreServices ];
|
|
|
|
buildFeatures = [
|
|
"trust-dns"
|
|
"local-http-native-tls"
|
|
"local-tunnel"
|
|
"local-socks4"
|
|
"local-redir"
|
|
"local-dns"
|
|
"local-tun"
|
|
"aead-cipher-extra"
|
|
"aead-cipher-2022"
|
|
"aead-cipher-2022-extra"
|
|
];
|
|
|
|
# all of these rely on connecting to www.example.com:80
|
|
checkFlags = [
|
|
"--skip=http_proxy"
|
|
"--skip=tcp_tunnel"
|
|
"--skip=tcprelay"
|
|
"--skip=udp_tunnel"
|
|
"--skip=udp_relay"
|
|
"--skip=socks4_relay_connect"
|
|
"--skip=socks5_relay_aead"
|
|
"--skip=socks5_relay_stream"
|
|
"--skip=trust_dns_resolver"
|
|
];
|
|
|
|
# timeouts in sandbox
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A Rust port of Shadowsocks";
|
|
homepage = "https://github.com/shadowsocks/shadowsocks-rust";
|
|
changelog = "https://github.com/shadowsocks/shadowsocks-rust/raw/v${version}/debian/changelog";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|