lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libgap: switch to upstream url

+10 -3
+10 -3
pkgs/development/libraries/libgap/default.nix
··· 1 - {stdenv, fetchurl, gmp}: 1 + { stdenv 2 + , fetchurl 3 + , gmp 4 + }: 5 + # will probably be obsolte (or at leat built from the upstream gap sources) soon (gap 4.9?). See 6 + # - https://github.com/gap-system/gap/projects/5#card-6239828 7 + # - https://github.com/markuspf/gap/issues/2 8 + # - https://trac.sagemath.org/ticket/22626 2 9 stdenv.mkDerivation rec { 3 10 name = "libgap-${version}"; 11 + # Has to be the same version as "gap" 4 12 version = "4.8.6"; 5 - # or fetchFromGitHub(owner,repo,rev) or fetchgit(rev) 6 13 src = fetchurl { 7 - url = "http://mirrors.mit.edu/sage/spkg/upstream/libgap/libgap-${version}.tar.gz"; 14 + url = "mirror://sageupstream/libgap/libgap-${version}.tar.gz"; 8 15 sha256 = "1h5fx5a55857w583ql7ly2jl49qyx9mvs7j5abys00ra9gzrpn5v"; 9 16 }; 10 17 buildInputs = [gmp];