python312Packages.slack-sdk: 3.33.3 -> 3.33.4 (#358119)
[NixPkgs.git] / pkgs / tools / networking / shadowsocks-rust / default.nix
blob07aec23d206ac1d8740b28d2d7a77c5590e455dc
1 { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security, CoreServices }:
3 rustPlatform.buildRustPackage rec {
4   pname = "shadowsocks-rust";
5   version = "1.21.1";
7   src = fetchFromGitHub {
8     rev = "v${version}";
9     owner = "shadowsocks";
10     repo = pname;
11     hash = "sha256-h18+233lxKNTRCRXUKYA4VzSfJy3ZHgU1KVZn7U36Z4=";
12   };
14   cargoHash = "sha256-rcLcbAH9f1xuLhvaZA9akg84o2E8G1CRfaAY0bWYby0=";
16   nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ];
18   buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
19     ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security CoreServices ];
21   buildFeatures = [
22     "trust-dns"
23     "local-http-native-tls"
24     "local-tunnel"
25     "local-socks4"
26     "local-redir"
27     "local-dns"
28     "local-tun"
29     "aead-cipher-extra"
30     "aead-cipher-2022"
31     "aead-cipher-2022-extra"
32   ];
34   # all of these rely on connecting to www.example.com:80
35   checkFlags = [
36     "--skip=http_proxy"
37     "--skip=tcp_tunnel"
38     "--skip=tcprelay"
39     "--skip=udp_tunnel"
40     "--skip=udp_relay"
41     "--skip=socks4_relay_connect"
42     "--skip=socks5_relay_aead"
43     "--skip=socks5_relay_stream"
44     "--skip=trust_dns_resolver"
45   ];
47   # timeouts in sandbox
48   doCheck = false;
50   meta = with lib; {
51     description = "Rust port of Shadowsocks";
52     homepage = "https://github.com/shadowsocks/shadowsocks-rust";
53     changelog = "https://github.com/shadowsocks/shadowsocks-rust/raw/v${version}/debian/changelog";
54     license = licenses.mit;
55     maintainers = [ ];
56   };