1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/compilers/gerbil/default.nix

13 lines
311 B
Nix
Raw Normal View History

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