summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-10-09 16:37:18 -0400
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-09 22:37:18 +0200
commit11c0d07761f692e2bc1285d7f45a57e99a9cf0c7 (patch)
tree6d50cfe0df9f228819fbe5088b63e8e96d665a19 /pkgs/tools
parenta00b820ddc0cf02aabd3e2fceb1089b5cf8b58ca (diff)
downloadnixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.tar
nixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.tar.gz
nixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.tar.bz2
nixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.tar.lz
nixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.tar.xz
nixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.tar.zst
nixlib-11c0d07761f692e2bc1285d7f45a57e99a9cf0c7.zip
f2fs-tools: fetch src from HTTPS instead of SSH (#48110)
All users can use HTTPS, but some enterprise users may not be able to access
external SSH endpoints behind corporate firewalls.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/filesystems/f2fs-tools/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/f2fs-tools/default.nix b/pkgs/tools/filesystems/f2fs-tools/default.nix
index 20e1853a3af6..a1428a257742 100644
--- a/pkgs/tools/filesystems/f2fs-tools/default.nix
+++ b/pkgs/tools/filesystems/f2fs-tools/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
   version = "1.11.0";
 
   src = fetchgit {
-    url = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git";
+    url = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git";
     rev = "refs/tags/v${version}";
     sha256 = "188yv77ga466wpzbirsx6vspym8idaschgi7cx92z4jwqpnkk5gv";
   };