summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-09-26 15:27:10 +0800
committerGitHub <noreply@github.com>2022-09-26 15:27:10 +0800
commitff9793cfd1a25145a7e591af604675b3d6f68987 (patch)
treee268e5e1245a9d92b59bf80f409dcd8f0a3dcb56
parentb78c3a22f388bd5320f664101d22885408b7898e (diff)
parent8740c5fd32a653db399ba614cb574df91e172e98 (diff)
downloadnixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.tar
nixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.tar.gz
nixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.tar.bz2
nixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.tar.lz
nixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.tar.xz
nixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.tar.zst
nixpkgs-ff9793cfd1a25145a7e591af604675b3d6f68987.zip
Merge pull request #192945 from tjni/3mux-fix
_3mux: update patch URL
-rw-r--r--pkgs/tools/misc/3mux/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/misc/3mux/default.nix b/pkgs/tools/misc/3mux/default.nix
index d91a52ddd3e..31787467525 100644
--- a/pkgs/tools/misc/3mux/default.nix
+++ b/pkgs/tools/misc/3mux/default.nix
@@ -13,9 +13,10 @@ buildGoModule rec {
 
   patches = [
     # Fix the build for Darwin when building with Go 1.18.
+    # https://github.com/aaronjanse/3mux/pull/127
     (fetchpatch {
       name = "darwin-go-1.18-fix.patch";
-      url = "https://github.com/aaronjanse/3mux/pull/127/commits/91aed826c50f75a5175b63c72a1fb6a4ad57a008.patch";
+      url = "https://github.com/aaronjanse/3mux/commit/91aed826c50f75a5175b63c72a1fb6a4ad57a008.patch";
       sha256 = "sha256-MOPAyWAYYWrlCCgw1rBaNmHZO9oTIpIQwLJcs0aY/m8=";
     })
   ];