about summary refs log tree commit diff
path: root/pkgs/tools/networking/nbd
diff options
context:
space:
mode:
authorYarny0 <41838844+Yarny0@users.noreply.github.com>2023-05-02 17:48:57 +0200
committerYarny0 <41838844+Yarny0@users.noreply.github.com>2023-05-02 17:53:42 +0200
commit2d3ca77855492f2992ff40442367f73cc1ff9dcb (patch)
tree6143046df16457460c0959c6211f2444fa072865 /pkgs/tools/networking/nbd
parent1a411f23ba299db155a5b45d5e145b85a7aafc42 (diff)
nbd: 3.24 -> 3.25, switch to github
"First official release on github,
rather than sourceforge (as in the past)",
according to the github tag message in

https://github.com/NetworkBlockDevice/nbd/releases/tag/nbd-3.25

Note that the commit at hand also fixes the build after it
broke due to the update to GLib 2.75.3 ("Log limit exceeded") in

https://github.com/NixOS/nixpkgs/commit/8e5ee715d12efa8fe3d1071d83c141a6a03d328a
Diffstat (limited to 'pkgs/tools/networking/nbd')
-rw-r--r--pkgs/tools/networking/nbd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/nbd/default.nix b/pkgs/tools/networking/nbd/default.nix
index c601770652787..e0efbe31f8ebb 100644
--- a/pkgs/tools/networking/nbd/default.nix
+++ b/pkgs/tools/networking/nbd/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "nbd";
-  version = "3.24";
+  version = "3.25";
 
   src = fetchurl {
-    url = "mirror://sourceforge/nbd/nbd-${version}.tar.xz";
-    sha256 = "sha256-aHcVbSOnsz917uidL1wskcVCr8PNy2Nt6lqIU5pY0Qw=";
+    url = "https://github.com/NetworkBlockDevice/nbd/releases/download/nbd-${version}/nbd-${version}.tar.xz";
+    hash = "sha256-9cj9D8tXsckmWU0OV/NWQy7ghni+8dQNCI8IMPDL3Qo=";
   };
 
   buildInputs = [ glib gnutls ]