nixpkgs/pkgs/development/compilers/gerbil/unstable.nix

14 lines
385 B
Nix
Raw Normal View History

{ stdenv, callPackage, fetchgit, gambit-unstable }:
2018-03-03 06:28:08 +00:00
callPackage ./build.nix {
version = "unstable-2018-09-06";
git-version = "0.14-DEV";
2018-03-03 06:28:08 +00:00
GAMBIT = gambit-unstable;
SRC = fetchgit {
url = "https://github.com/vyzo/gerbil.git";
rev = "184cb635c82517d5d75d7966dcdf1d25ad863dac";
sha256 = "1ljzbpc36i9zpzfwra5hpfbgzj1dyzzp50h5jf976n8qr9x4l7an";
2018-03-03 06:28:08 +00:00
};
inherit stdenv;
2018-03-03 06:28:08 +00:00
}