3
0
Fork 0
forked from mirrors/nixpkgs

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.
This commit is contained in:
Benjamin Hipple 2018-06-09 19:35:39 -04:00
parent 91be6b9f40
commit 5cc335cd55

View file

@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
version = "4.14.0";
src = fetchgit {
url = "git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git";
rev = "refs/tags/v${version}";
url = "https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git";
rev = "v${version}";
sha256 = "19mg3avm188xz215hqbbh7251q27qwm7g1xr8ffrjwvzmdq55rxj";
};