aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2019-09-03 18:20:22 -0500
committerGitHub <noreply@github.com>2019-09-03 18:20:22 -0500
commitb53840212774c9ae7f7bdacabe3792db05561c8c (patch)
treeb9f2ebf77a26c6b77b188a50981c497599aa1628 /pkgs/development/libraries/boost
parentbf3de125a3f24d34e9414d6dfdba7dfc1174fdca (diff)
boost171: use 'urls' attribute per suggestion (thanks!)
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/1.71.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boost/1.71.nix b/pkgs/development/libraries/boost/1.71.nix
index 3a585c2bc9b1..f66bd4cd6fb1 100644
--- a/pkgs/development/libraries/boost/1.71.nix
+++ b/pkgs/development/libraries/boost/1.71.nix
@@ -5,7 +5,10 @@ callPackage ./generic.nix (args // rec {
src = fetchurl {
#url = "mirror://sourceforge/boost/boost_1_71_0.tar.bz2";
- url = "https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2";
+ urls = [
+ "mirror://sourceforge/boost/boost_1_71_0.tar.bz2"
+ "https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2"
+ ];
# SHA256 from http://www.boost.org/users/history/version_1_71_0.html
sha256 = "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee";
};