gerbil: 0.13 -> 0.14

This commit is contained in:
Francois-Rene Rideau
2018-11-19 22:42:50 -05:00
parent 7ffdb45101
commit f87b172891
2 changed files with 15 additions and 13 deletions
+10 -8
View File
@@ -1,12 +1,14 @@
{ stdenv, callPackage, fetchurl, gambit }:
{ stdenv, callPackage, fetchFromGitHub, gambit }:
callPackage ./build.nix {
version = "0.13";
git-version = "0.13";
GAMBIT = gambit;
SRC = fetchurl {
url = "https://github.com/vyzo/gerbil/archive/v0.13.tar.gz";
sha256 = "1qs0vdq2lgxlpw20s8jzw2adx1xk9wb3w2m4a8vp6bb8hagmfr5l";
callPackage ./build.nix rec {
version = "0.14";
git-version = "0.14";
inherit gambit;
src = fetchFromGitHub {
owner = "vyzo";
repo = "gerbil";
rev = "v${version}";
sha256 = "0n078lkf8m391kr99ipb1v2dpi5vkikz9nj0p7kfjg43868my3v7";
};
inherit stdenv;
}