tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
spin: use dropbox "mirror" again to avoid problems
Will Dietz
7 years ago
6507d48e
c869590d
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
analysis
spin
default.nix
+5
-1
pkgs/development/tools/analysis/spin/default.nix
···
11
11
url-version = stdenv.lib.replaceChars ["."] [""] version;
12
12
13
13
src = fetchurl {
14
14
-
url = "http://spinroot.com/spin/Src/spin${url-version}.tar.gz";
14
14
+
# The homepage is behind CloudFlare anti-DDoS protection, which blocks cURL.
15
15
+
# Dropbox mirror from developers:
16
16
+
# https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AADZPqS4aoR-pjNF6OQXRLQHa
17
17
+
# (note that this URL doesn't work aross versions and hash should come from official site)
18
18
+
url = "https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AABtxFePMJmPxsxSvU5cpxh8a/spin${url-version}.tar.gz?raw=1";
15
19
sha256 = "07b7wk3qyfnp4pgwicqd33l7i1krzyihx0cf9zkv81ywaklf5vll";
16
20
};
17
21