diff options
| author | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2020-02-10 19:00:03 -0500 |
|---|---|---|
| committer | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2020-02-10 19:09:03 -0500 |
| commit | 34c7eb7545d155cc5b6f499b23a7cb1c96ab4d59 (patch) | |
| tree | aae0a941686ab0bdf5ba3fcd5a69c4f91a46b77e | |
| parent | file: fix download url for CVE-2019-18218 (diff) | |
| download | nixpkgs-gitlab.intr/release-19.03.tar.gz | |
mesos: switch to https for mavenorigin/nixpkgs-19.03-darwinorigin/nixos-19.03-smallorigin/nixos-19.03gitlab.intr/release-19.03gitlab.intr/nixpkgs-19.03-darwingitlab.intr/nixos-19.03-smallgitlab.intr/nixos-19.03
Fixes: #78702
Closes: #79260
(cherry picked from commit 157f392f57ddcb3a0c8b7062dc01469c6b43fdce)
| -rw-r--r-- | pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh | 2 |
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" } |
