Merge pull request #33612 from fare-patches/master

Update gambit and gerbil

authored by Michael Raskin and committed by GitHub 18ca43f3 d4917695

+9 -6
+3 -3
pkgs/development/compilers/gambit/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "gambit-${version}"; 7 - version = "4.8.8-415-g29ed48bb"; 7 + version = "4.8.8-427-g37b111a5"; 8 8 bootstrap = import ./bootstrap.nix ( pkgs ); 9 9 10 10 src = fetchgit { 11 11 url = "https://github.com/feeley/gambit.git"; 12 - rev = "29ed48bb688e8302d2430b5d24a2fc7c2039aeec"; 13 - sha256 = "1h3kmczvjir0pi6cmqa2bsc09n68jhw0bxq7m6w4b1f0xvgvn3fr"; 12 + rev = "37b111a5ca3aeff9dc6cb8be470277a8c1e80f24"; 13 + sha256 = "14l7jql9nh7bjs6c822a17rcp9583l6bb5kiq95allgyf229vy50"; 14 14 }; 15 15 16 16 buildInputs = [ openssl git autoconf bootstrap ];
+6 -3
pkgs/development/compilers/gerbil/default.nix
··· 7 7 stdenv.mkDerivation rec { 8 8 name = "gerbil-${version}"; 9 9 10 - version = "0.12-DEV-836-gcde6802"; 10 + version = "0.12-DEV-1030-gbbed3bc"; 11 11 src = fetchgit { 12 12 url = "https://github.com/vyzo/gerbil.git"; 13 - rev = "2904b0014fac344409d0ae2ba5835d0e67ac83b5"; 14 - sha256 = "1nnirqdd11n6pkvidnf8pb39m45jjnpmwj2qy62di024r7ha3y18"; 13 + rev = "bbed3bc4cf7bcaa64eaabdf097192bfcc2bfc928"; 14 + sha256 = "1dc0j143j860yq72lfjp71fin7hpsy1426azz7rl1szxvjfb7h4r"; 15 15 }; 16 16 17 17 buildInputs = [ ··· 37 37 38 38 # Enable all optional libraries 39 39 substituteInPlace "src/std/build-features.ss" --replace '#f' '#t' 40 + 41 + # gxprof testing uses $HOME/.cache/gerbil/gxc 42 + export HOME=$$PWD 40 43 41 44 # Build, replacing make by build.sh 42 45 ( cd src && sh build.sh )