nixpkgs/pkgs/tools/networking/shadowsocks-rust/default.nix

30 lines
849 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices, libiconv }:
2019-03-02 00:59:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "shadowsocks-rust";
version = "1.9.2";
2019-03-02 00:59:49 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "shadowsocks";
repo = pname;
sha256 = "1mqxfw21ilcy0gc2jrn5f385y3g9inabp9fjc39m5ydljja4g5b9";
2019-03-02 00:59:49 +00:00
};
cargoSha256 = "1ja2hcsa2wa0zmblz4ps35jcx1y29j469lf4i9a7sw0kgh3xp1ha";
2020-05-15 10:20:00 +01:00
RUSTC_BOOTSTRAP = 1;
2019-03-02 00:59:49 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
checkFlags = [ "--skip=http_proxy" "--skip=udp_tunnel" ];
2019-03-02 00:59:49 +00:00
meta = with lib; {
homepage = "https://github.com/shadowsocks/shadowsocks-rust";
2019-03-02 00:59:49 +00:00
description = "A Rust port of shadowsocks";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
broken = stdenv.isAarch64; # crypto2 crate doesn't build on aarch64
2019-03-02 00:59:49 +00:00
};
}