summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-06-09 19:35:39 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2018-06-09 19:35:39 -0400
commit5cc335cd555e88abf0ef2f0cac98778ff5e8d971 (patch)
tree11a1a00ab590c4c26ef365a65b6275a46c32e8d1 /pkgs
parent91be6b9f402a5c05d1173f7f77376d04ca2f97e5 (diff)
downloadnixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.tar
nixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.tar.gz
nixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.tar.bz2
nixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.tar.lz
nixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.tar.xz
nixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.tar.zst
nixlib-5cc335cd555e88abf0ef2f0cac98778ff5e8d971.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/filesystems/xfsprogs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/xfsprogs/default.nix b/pkgs/tools/filesystems/xfsprogs/default.nix
index cc2bbad1680a..d38e26edec6e 100644
--- a/pkgs/tools/filesystems/xfsprogs/default.nix
+++ b/pkgs/tools/filesystems/xfsprogs/default.nix
@@ -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";
   };