xfsprogs: swap src url to HTTPS

This swaps the fetchgit call to be more consistent with the majority of other
NixPkgs fetchgit calls. Moreover, almost every network will be able to do HTTPS,
while some enterprise networks may limit external SSH access.

+2 -2
+2 -2
pkgs/tools/filesystems/xfsprogs/default.nix
··· 12 12 version = "4.14.0"; 13 13 14 14 src = fetchgit { 15 - url = "git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git"; 16 - rev = "refs/tags/v${version}"; 15 + url = "https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git"; 16 + rev = "v${version}"; 17 17 sha256 = "19mg3avm188xz215hqbbh7251q27qwm7g1xr8ffrjwvzmdq55rxj"; 18 18 }; 19 19