Skip to content

Commit

Permalink
xfsprogs: swap src url to HTTPS
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bhipple committed Jun 9, 2018
1 parent 91be6b9 commit 5cc335c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/xfsprogs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};

Expand Down

0 comments on commit 5cc335c

Please sign in to comment.