nixpkgs-suyu/pkgs/development/compilers/gambit/default.nix

14 lines
400 B
Nix
Raw Normal View History

2018-03-27 05:44:13 +02:00
{ callPackage, fetchgit }:
2018-03-27 05:44:13 +02:00
callPackage ./build.nix {
2018-02-27 11:00:09 +01:00
version = "4.8.9";
2018-03-27 05:44:13 +02:00
# TODO: for next version, prefer the unpatched tarball for the stable/default gambit.
git-version = "4.8.9-8-g793679bd";
2018-03-27 05:44:13 +02:00
SRC = fetchgit {
url = "https://github.com/feeley/gambit.git";
2018-02-27 11:00:09 +01:00
rev = "dd54a71dfc0bd09813592f1645d755867a02195d";
sha256 = "120kg73k39gshrwas8a3xcrxgnq1c7ww92wgy4d3mmrwy3j9nzzc";
};
}