Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

spin: use dropbox "mirror" again to avoid problems

+5 -1
+5 -1
pkgs/development/tools/analysis/spin/default.nix
··· 11 url-version = stdenv.lib.replaceChars ["."] [""] version; 12 13 src = fetchurl { 14 - url = "http://spinroot.com/spin/Src/spin${url-version}.tar.gz"; 15 sha256 = "07b7wk3qyfnp4pgwicqd33l7i1krzyihx0cf9zkv81ywaklf5vll"; 16 }; 17
··· 11 url-version = stdenv.lib.replaceChars ["."] [""] version; 12 13 src = fetchurl { 14 + # The homepage is behind CloudFlare anti-DDoS protection, which blocks cURL. 15 + # Dropbox mirror from developers: 16 + # https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AADZPqS4aoR-pjNF6OQXRLQHa 17 + # (note that this URL doesn't work aross versions and hash should come from official site) 18 + url = "https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AABtxFePMJmPxsxSvU5cpxh8a/spin${url-version}.tar.gz?raw=1"; 19 sha256 = "07b7wk3qyfnp4pgwicqd33l7i1krzyihx0cf9zkv81ywaklf5vll"; 20 }; 21