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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
266 B
Nix
Raw Normal View History

{ callPackage, fetchurl }:
callPackage ./build.nix rec {
2022-01-25 16:12:11 +00:00
version = "4.9.5";
2023-09-10 23:04:17 +00:00
git-version = "v${version}";
2018-11-18 03:45:54 +00:00
src = fetchurl {
2022-01-25 16:12:11 +00:00
url = "https://gambitscheme.org/4.9.5/gambit-v4_9_5.tgz";
sha256 = "sha256-4o74218OexFZcgwVAFPcq498TK4fDlyDiUR5cHP4wdw=";
};
}