3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/gambit/unstable.nix

14 lines
346 B
Nix
Raw Normal View History

{ stdenv, callPackage, fetchFromGitHub }:
2018-03-27 04:44:13 +01:00
callPackage ./build.nix {
version = "unstable-2019-01-18";
# git-version = "4.9.2";
src = fetchFromGitHub {
owner = "feeley";
repo = "gambit";
rev = "cf5688ecf35d85b9355c645f535c1e057b3064e7";
sha256 = "1xr7j4iws6hlrdbvlii4n98apr78k4adbnmy4ggzyik65bynh1kl";
2018-03-27 04:44:13 +01:00
};
inherit stdenv;
2018-03-27 04:44:13 +01:00
}