From 11c0d07761f692e2bc1285d7f45a57e99a9cf0c7 Mon Sep 17 00:00:00 2001 From: Benjamin Hipple Date: Tue, 9 Oct 2018 16:37:18 -0400 Subject: [PATCH] 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. --- pkgs/tools/filesystems/f2fs-tools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; };