summary refs log tree commit diff
path: root/pkgs/development/compilers/gambit/default.nix
blob: 0996d0c3078ae5ab86ee72c97cabf527f709830d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, fetchgit }:

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";

  SRC = fetchgit {
    url = "https://github.com/feeley/gambit.git";
    rev = "dd54a71dfc0bd09813592f1645d755867a02195d";
    sha256 = "120kg73k39gshrwas8a3xcrxgnq1c7ww92wgy4d3mmrwy3j9nzzc";
  };
}