summary refs log tree commit diff
path: root/pkgs/development/compilers/chicken/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/chicken/default.nix')
-rw-r--r--pkgs/development/compilers/chicken/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/chicken/default.nix b/pkgs/development/compilers/chicken/default.nix
index 3b9d4d39118..82cf23e8be4 100644
--- a/pkgs/development/compilers/chicken/default.nix
+++ b/pkgs/development/compilers/chicken/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, makeWrapper, bootstrap-chicken ? null }:
 
 let
-  version = "4.9.0.1";
+  version = "4.10.0";
   platform = with stdenv;
     if isDarwin then "macosx"
     else if isCygwin then "cygwin"
@@ -16,8 +16,8 @@ stdenv.mkDerivation {
   binaryVersion = 7;
 
   src = fetchurl {
-    url = "http://code.call-cc.org/releases/4.9.0/chicken-${version}.tar.gz";
-    sha256 = "0598mar1qswfd8hva9nqs88zjn02lzkqd8fzdd21dz1nki1prpq4";
+    url = "http://code.call-cc.org/releases/4.10.0/chicken-${version}.tar.gz";
+    sha256 = "16w96jrhb6qf62fgznk53f55yhfv81damghdjn31k5hirnmza1qf";
   };
 
   setupHook = lib.ifEnable (bootstrap-chicken != null) ./setup-hook.sh;