summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-02-10 19:00:03 -0500
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-02-10 19:09:03 -0500
commit34c7eb7545d155cc5b6f499b23a7cb1c96ab4d59 (patch)
treeaae0a941686ab0bdf5ba3fcd5a69c4f91a46b77e
parentfile: fix download url for CVE-2019-18218 (diff)
downloadnixpkgs-gitlab.intr/release-19.03.tar.gz
Fixes: #78702 Closes: #79260 (cherry picked from commit 157f392f57ddcb3a0c8b7062dc01469c6b43fdce)
-rw-r--r--pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh b/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh
index cf7318ecb273..1e2840017b34 100644
--- a/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh
+++ b/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh
@@ -4,7 +4,7 @@ header "fetching Apache Mesos maven repo"
function fetchArtifact {
repoPath="$1"
echo "Fetching $repoPath"
- url="http://repo.maven.apache.org/maven2/$repoPath"
+ url="https://repo.maven.apache.org/maven2/$repoPath"
mkdir -p $(dirname $out/$repoPath)
curl --fail --location --insecure --retry 3 --max-redirs 20 "$url" --output "$out/$repoPath"
}