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

callPackage ./build.nix {
  version = "unstable-2019-02-09";
  git-version = "0.16-DEV-15-gafc20fc2";
  gambit = gambit-unstable;
  src = fetchFromGitHub {
    owner = "vyzo";
    repo = "gerbil";
    rev = "afc20fc21030e8445b46b8267cc4c52cfd662aad";
    sha256 = "02v16zya9zryjs4wallibp1kvnpba60aw15y4k7zhddc71qjfbhw";
  };
  inherit stdenv;
}