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

Yarny0 2d3ca778 1a411f23

+3 -3
+3 -3
pkgs/tools/networking/nbd/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nbd"; 5 - version = "3.24"; 6 7 src = fetchurl { 8 - url = "mirror://sourceforge/nbd/nbd-${version}.tar.xz"; 9 - sha256 = "sha256-aHcVbSOnsz917uidL1wskcVCr8PNy2Nt6lqIU5pY0Qw="; 10 }; 11 12 buildInputs = [ glib gnutls ]
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nbd"; 5 + version = "3.25"; 6 7 src = fetchurl { 8 + url = "https://github.com/NetworkBlockDevice/nbd/releases/download/nbd-${version}/nbd-${version}.tar.xz"; 9 + hash = "sha256-9cj9D8tXsckmWU0OV/NWQy7ghni+8dQNCI8IMPDL3Qo="; 10 }; 11 12 buildInputs = [ glib gnutls ]