pharo: Add PharoV60.sources to support newer images

This commit is contained in:
Luke Gorrie 2017-07-05 04:53:51 +00:00
parent 96600d5770
commit 448fe16856

View File

@ -31,6 +31,11 @@ stdenv.mkDerivation rec {
sha256 = "0ykl1y0a4yy5qn8fwz0wkl8fcn4pqv9q0w0r2llhzdz3jdg1k69g";
};
sources60Zip = fetchurl {
url = http://files.pharo.org/sources/PharoV60.sources.zip;
sha256 = "0xbdi679ryb2zg412xy6zkh22l20pmbl92m3qhfgzjvgybna8z2a";
};
buildInputs = [ unzip ];
installPhase = ''
@ -43,6 +48,7 @@ stdenv.mkDerivation rec {
unzip ${sources30Zip} -d $prefix/lib/
unzip ${sources40Zip} -d $prefix/lib/
unzip ${sources50Zip} -d $prefix/lib/
unzip ${sources60Zip} -d $prefix/lib/
'';
meta = {