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

callPackage ./build.nix {
  version = "unstable-2019-01-18";
# git-version = "4.9.2";
  src = fetchFromGitHub {
    owner = "feeley";
    repo = "gambit";
    rev = "cf5688ecf35d85b9355c645f535c1e057b3064e7";
    sha256 = "1xr7j4iws6hlrdbvlii4n98apr78k4adbnmy4ggzyik65bynh1kl";
  };
  inherit stdenv;
}