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

13 lines
311 B
Nix
Raw Normal View History

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