haskell: add more hackage mirrors, use mirrors in more places

Fixes #58971
This commit is contained in:
Matthew Bauer 2019-04-05 13:49:48 -04:00
parent e03966a60f
commit eaa5e85b35
4 changed files with 6 additions and 4 deletions

View File

@ -8,9 +8,9 @@ let version = "0.15";
in stdenv.mkDerivation {
name = "hsc3-mode-${version}";
src = fetchurl {
url = http://hackage.haskell.org/package/hsc3-0.15/hsc3-0.15.tar.gz;
url = mirror://hackage/hsc3-0.15/hsc3-0.15.tar.gz;
sha256 = "2f3b15655419cf8ebe25ab1c6ec22993b2589b4ffca7c3a75ce478ca78a0bde6";
};
};
buildInputs = [ emacs ];

View File

@ -308,6 +308,8 @@ rec {
hackage = [
http://hackage.haskell.org/package/
http://hdiff.luite.com/packages/archive/package/
http://hackage.fpcomplete.com/package/
http://objects-us-east-1.dream.io/hackage-mirror/package/
];
# Roy marples mirrors

View File

@ -118,7 +118,7 @@ let
binDir = if enableSeparateBinOutput then "$bin/bin" else "$out/bin";
newCabalFileUrl = "http://hackage.haskell.org/package/${pname}-${version}/revision/${revision}.cabal";
newCabalFileUrl = "mirror://hackage/${pname}-${version}/revision/${revision}.cabal";
newCabalFile = fetchurl {
url = newCabalFileUrl;
sha256 = editedCabalFile;

View File

@ -183,7 +183,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
callHackageDirect = {pkg, ver, sha256}@args:
let pkgver = "${pkg}-${ver}";
in self.callCabal2nix pkg (pkgs.fetchzip {
url = "http://hackage.haskell.org/package/${pkgver}/${pkgver}.tar.gz";
url = "mirror://hackage/${pkgver}/${pkgver}.tar.gz";
inherit sha256;
});