summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2019-11-23 23:49:56 +0000
committerGitHub <noreply@github.com>2019-11-23 23:49:56 +0000
commit5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769 (patch)
treea99c3387bf83d0874f872a31b08eb8486732bfcf /pkgs/development
parentd95112aa733e81533128e3f7b65b3a9dbe7a0642 (diff)
parent3823b386b4d02780cb3b82d68197fea7feb33d9c (diff)
downloadnixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.tar
nixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.tar.gz
nixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.tar.bz2
nixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.tar.lz
nixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.tar.xz
nixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.tar.zst
nixpkgs-5ccfbd9d4ab2c3b4ad0dfc5f9d60ac52f026d769.zip
Merge pull request #73995 from fare-patches/master
gerbil-unstable: 2019-08-11 -> 2019-11-10
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/gerbil/unstable.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/compilers/gerbil/unstable.nix b/pkgs/development/compilers/gerbil/unstable.nix
index a9618a7e066..5f0347aa9a6 100644
--- a/pkgs/development/compilers/gerbil/unstable.nix
+++ b/pkgs/development/compilers/gerbil/unstable.nix
@@ -1,14 +1,15 @@
-{ stdenv, callPackage, fetchFromGitHub, gambit-unstable }:
+{ stdenv, callPackage, fetchFromGitHub, gambit, gambit-unstable }:
 
 callPackage ./build.nix {
-  version = "unstable-2019-08-11";
-  git-version = "0.16-DEV-132-gcb58f9a3";
-  gambit = gambit-unstable;
+  version = "unstable-2019-11-15";
+  git-version = "0.15.1-461-gee22de62";
+  #gambit = gambit-unstable;
+  gambit = gambit;
   src = fetchFromGitHub {
     owner = "vyzo";
     repo = "gerbil";
-    rev = "cb58f9a30630a6f3e85a55f2c1dcc654f517ffed";
-    sha256 = "18jh64v1gi6z3pks9zf19f2wcjpv21cs270dnaq617kgwp53vysh";
+    rev = "ee22de628a656ee59c6c72bc25d7b2e25a4ece2f";
+    sha256 = "1n1j596b91k9xcmv22l72nga6wv20bka2q51ik2jw2vkcw8zkc1c";
   };
   inherit stdenv;
 }