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

callPackage ./build.nix {
  version = "0.12-RELEASE";
  git-version = "0.12";
  GAMBIT = gambit;
  SRC = fetchurl {
    url = "https://github.com/vyzo/gerbil/archive/v0.12.tar.gz";
    sha256 = "0nigr3mgrzai57q2jqac8f39zj8rcmic3277ynyzlgm8hhps71pq";
  };
  inherit stdenv;
}