about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
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:00:03 -0500
commit157f392f57ddcb3a0c8b7062dc01469c6b43fdce (patch)
tree79f9fe508c2ed9a49ef0dc4c2984a0558df4ff79 /pkgs/applications/networking/cluster
parent6932a75d9c48c4587a340ceb384d83e87709d189 (diff)
downloadnixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.tar
nixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.tar.gz
nixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.tar.bz2
nixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.tar.lz
nixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.tar.xz
nixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.tar.zst
nixlib-157f392f57ddcb3a0c8b7062dc01469c6b43fdce.zip
mesos: switch to https for maven
Fixes: #78702
Closes: #79260
Diffstat (limited to 'pkgs/applications/networking/cluster')
-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"
 }