summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-07-02 19:07:16 -0500
committerGitHub <noreply@github.com>2019-07-02 19:07:16 -0500
commitbc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb (patch)
tree131e27a09b377b0a6f4fed3a204b73347b36f95a /pkgs/development/compilers
parent0dc4abff2c3004ee0f86cc237ec96e4ee6a58f24 (diff)
parentba189ee3b52db96cbd5d6ce4d66c247280ef0a68 (diff)
downloadnixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.tar
nixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.tar.gz
nixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.tar.bz2
nixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.tar.lz
nixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.tar.xz
nixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.tar.zst
nixpkgs-bc9e0ef98a7c3ea2c42221aea0a129af7ea2a5cb.zip
Merge pull request #63997 from r-ryantm/auto-update/chicken
chicken: 5.0.0 -> 5.1.0
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/chicken/5/chicken.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/chicken/5/chicken.nix b/pkgs/development/compilers/chicken/5/chicken.nix
index ff0faf40839..a3b32ceee0c 100644
--- a/pkgs/development/compilers/chicken/5/chicken.nix
+++ b/pkgs/development/compilers/chicken/5/chicken.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, makeWrapper, bootstrap-chicken ? null }:
 
 let
-  version = "5.0.0";
+  version = "5.1.0";
   platform = with stdenv;
     if isDarwin then "macosx"
     else if isCygwin then "cygwin"
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "https://code.call-cc.org/releases/${version}/chicken-${version}.tar.gz";
-    sha256 = "15b5yrzfa8aimzba79x7v6y282f898rxqxfxrr446sjx9jwlpfd8";
+    sha256 = "0jsbp3kp0134f318j3wpd1n85gf8qzh034fn198gvazsv2l024aw";
   };
 
   setupHook = lib.ifEnable (bootstrap-chicken != null) ./setup-hook.sh;