about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-12-16 13:18:13 -0500
committerGitHub <noreply@github.com>2023-12-16 13:18:13 -0500
commit301149861951935596cf27657566b79bb9cc849a (patch)
treeb2095aaa54f00f2d430e307899ff3f48b43c0f77 /pkgs/tools
parentccc22d33c3a3ce94ff85555153b8ca69e8a0ace1 (diff)
parent7bd442f236ae60b2eef0d4b79c7251834e004ff5 (diff)
Merge pull request #274683 from misuzu/netbird-update
netbird: 0.24.3 -> 0.24.4
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/netbird/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/networking/netbird/default.nix b/pkgs/tools/networking/netbird/default.nix
index c74d080299868..28bda2203ffcf 100644
--- a/pkgs/tools/networking/netbird/default.nix
+++ b/pkgs/tools/networking/netbird/default.nix
@@ -17,6 +17,7 @@
 , UserNotifications
 , WebKit
 , ui ? false
+, netbird-ui
 }:
 let
   modules =
@@ -30,16 +31,16 @@ let
 in
 buildGoModule rec {
   pname = "netbird";
-  version = "0.24.3";
+  version = "0.24.4";
 
   src = fetchFromGitHub {
     owner = "netbirdio";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-r/2P0QeILO0t5GIXD6yrqdUdOpPzNfBIniPhKdlJ+0g=";
+    hash = "sha256-m3LGxRUo1ModiSS1O1e5B513hRe42WuBo7GWYf/oaHA=";
   };
 
-  vendorHash = "sha256-FTr36gndWTrpEKo7KXdZJIR7aM0jrEOTFm1JlxokRaw=";
+  vendorHash = "sha256-lto71mayUJGDiKPSoKJD2DmIJikhv6sjEGsW4Ls1UUM=";
 
   nativeBuildInputs = [ installShellFiles ] ++ lib.optional ui pkg-config;
 
@@ -100,6 +101,7 @@ buildGoModule rec {
 
   passthru = {
     tests.netbird = nixosTests.netbird;
+    tests.netbird-ui = netbird-ui;
     updateScript = nix-update-script { };
   };