13 lines
311 B
Nix
Raw Normal View History

{ stdenv, callPackage, fetchurl, gambit }:
2017-06-02 20:26:52 -04:00
2018-03-03 01:28:08 -05:00
callPackage ./build.nix {
2018-09-06 11:42:16 -04:00
version = "0.13";
git-version = "0.13";
2018-03-03 01:28:08 -05:00
GAMBIT = gambit;
SRC = fetchurl {
2018-09-06 11:42:16 -04:00
url = "https://github.com/vyzo/gerbil/archive/v0.13.tar.gz";
sha256 = "1qs0vdq2lgxlpw20s8jzw2adx1xk9wb3w2m4a8vp6bb8hagmfr5l";
2017-06-02 20:26:52 -04:00
};
inherit stdenv;
2017-06-02 20:26:52 -04:00
}