about summary refs log tree commit diff
path: root/pkgs/development/compilers/gambit
diff options
context:
space:
mode:
authorFrancois-Rene Rideau <fare@tunes.org>2018-04-07 08:29:37 -0400
committerFrancois-Rene Rideau <fare@tunes.org>2018-05-29 22:54:17 -0400
commit3816372808320ee2d3526f75e1a2b6164ca511d6 (patch)
treea32ef26a803d90828000976bb6fe29f2b38ec899 /pkgs/development/compilers/gambit
parentc29d2fde74d03178ed42655de6dee389f2b7d37f (diff)
downloadnixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.tar
nixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.tar.gz
nixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.tar.bz2
nixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.tar.lz
nixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.tar.xz
nixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.tar.zst
nixlib-3816372808320ee2d3526f75e1a2b6164ca511d6.zip
gambit: use release tarball, not git, for 4.8.9
Diffstat (limited to 'pkgs/development/compilers/gambit')
-rw-r--r--pkgs/development/compilers/gambit/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/development/compilers/gambit/default.nix b/pkgs/development/compilers/gambit/default.nix
index 0996d0c3078a..93f1d9184b4d 100644
--- a/pkgs/development/compilers/gambit/default.nix
+++ b/pkgs/development/compilers/gambit/default.nix
@@ -1,13 +1,11 @@
-{ callPackage, fetchgit }:
+{ callPackage, fetchurl }:
 
 callPackage ./build.nix {
   version = "4.8.9";
-  # TODO: for next version, prefer the unpatched tarball for the stable/default gambit.
-  git-version = "4.8.9-8-g793679bd";
+  git-version = "4.8.9";
 
-  SRC = fetchgit {
-    url = "https://github.com/feeley/gambit.git";
-    rev = "dd54a71dfc0bd09813592f1645d755867a02195d";
-    sha256 = "120kg73k39gshrwas8a3xcrxgnq1c7ww92wgy4d3mmrwy3j9nzzc";
+  SRC = fetchurl {
+    url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-v4_8_9-devel.tgz";
+    sha256 = "1gwzz1ag9hlv266nvfq1bhwzrps3f2yghhffasjjqy8i8xwnry5p";
   };
 }