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

13 lines
339 B
Nix
Raw Normal View History

{ stdenv, callPackage, fetchgit }:
2018-03-27 05:44:13 +02:00
callPackage ./build.nix {
version = "unstable-2018-09-03";
# git-version = "4.9.0";
2018-03-27 05:44:13 +02:00
SRC = fetchgit {
url = "https://github.com/feeley/gambit.git";
rev = "7cdc7e7b9194b2c088c0667efaf7686a4ffd0d8a";
sha256 = "06mmi8jkinihfirz4gjfw2lhxhskiqf3d47sihzx10r60asyqcxg";
2018-03-27 05:44:13 +02:00
};
inherit stdenv;
2018-03-27 05:44:13 +02:00
}