about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-02-19 00:02:25 +0000
committerGitHub <noreply@github.com>2024-02-19 00:02:25 +0000
commitde0bf263cce70074a298ee4672ca3a503d66e39c (patch)
treebe666a3cd4c655e307b6703026367d47a86fc1a7 /pkgs/tools/networking
parentd076cde70cbceca9315a11bdc609ddfcec9dfbca (diff)
parent157c7313726ffe0469b4e9512e010bbc1038ecbe (diff)
downloadnixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.tar
nixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.tar.gz
nixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.tar.bz2
nixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.tar.lz
nixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.tar.xz
nixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.tar.zst
nixlib-de0bf263cce70074a298ee4672ca3a503d66e39c.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/shadowsocks-rust/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/shadowsocks-rust/default.nix b/pkgs/tools/networking/shadowsocks-rust/default.nix
index d4e619f563f6..38fb6a60169b 100644
--- a/pkgs/tools/networking/shadowsocks-rust/default.nix
+++ b/pkgs/tools/networking/shadowsocks-rust/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "shadowsocks-rust";
-  version = "1.18.0";
+  version = "1.18.1";
 
   src = fetchFromGitHub {
     rev = "v${version}";
     owner = "shadowsocks";
     repo = pname;
-    hash = "sha256-vW1Q3pqVXR3yn2wixhDZE1QsMmUfKswaGZ6JbJAZ5VM=";
+    hash = "sha256-q7XtYOBruEmjPC4gx+hBO5oRwbxL7wQJenBS8Pl6yRk=";
   };
 
-  cargoHash = "sha256-cjkt6Ivpn3MpjdiPM/tLm3B+v/+VCJyxiF7x1bob528=";
+  cargoHash = "sha256-av4xUjoUGt53UoEpWULv15JKVWZq1x0YXvF5XFf4meQ=";
 
   nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];