summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/chicken/5/chicken.nix
diff options
context:
space:
mode:
authorEvan Hanson <evhan@foldling.org>2020-03-01 11:02:11 +1300
committerJon <jonringer@users.noreply.github.com>2020-03-01 23:42:29 -0800
commit4eb9e9a20c303f86129277e1fd48542fce4dad4f (patch)
tree702530014549528e509bb407f3fc7367a80214d3 /pkgs/development/compilers/chicken/5/chicken.nix
parent83015ff7954a1a111737359ac644443327ce6f6f (diff)
chicken: 5.1.0 -> 5.2.0
Also updates the matchable egg (used by egg2nix) from 1.0 -> 1.1 and removes trailing slashes from the path prefix variables passed to wrapProgram (they're unnecessary and only result in doubled-up slashes in the values).
Diffstat (limited to 'pkgs/development/compilers/chicken/5/chicken.nix')
-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 3e47e4136363..eefd8e35a272 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.1.0";
+ version = "5.2.0";
platform = with stdenv;
if isDarwin then "macosx"
else if isCygwin then "cygwin"
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://code.call-cc.org/releases/${version}/chicken-${version}.tar.gz";
- sha256 = "0jsbp3kp0134f318j3wpd1n85gf8qzh034fn198gvazsv2l024aw";
+ sha256 = "1yl0hxm9cirgcp8jgxp6vv29lpswfvaw3zfkh6rsj0vkrv44k4c1";
};
setupHook = lib.ifEnable (bootstrap-chicken != null) ./setup-hook.sh;