1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00
nixpkgs/pkgs/development/compilers/gerbil/unstable.nix

15 lines
388 B
Nix
Raw Normal View History

{ stdenv, callPackage, fetchFromGitHub, gambit-unstable }:
2018-03-03 06:28:08 +00:00
callPackage ./build.nix {
version = "unstable-2019-01-25";
git-version = "0.15";
gambit = gambit-unstable;
src = fetchFromGitHub {
owner = "vyzo";
repo = "gerbil";
rev = "8c1aa2ca129a380de9cf668a7f3f6d56e56cbf94";
sha256 = "1ff1gpl0bl1pbs68bxax82ikw4bzbkrj4a6l775ziwyfndjggl66";
2018-03-03 06:28:08 +00:00
};
inherit stdenv;
2018-03-03 06:28:08 +00:00
}