summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Ziltener <zilti@users.noreply.github.com>2023-11-13 20:31:03 +0100
committerEmery Hemingway <ehmry@posteo.net>2023-11-16 19:06:59 +0000
commit658cbda76985679b435b0070fb16c11800e500eb (patch)
treeaa72cec8a255442ee3c1e7422064b2fe0b5b88f4
parent66182ca7fcb1469dab6be4c8e7379674ffac4fb1 (diff)
Pharo 10.0.5 -> 10.0.8
-rw-r--r--pkgs/development/pharo/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/pharo/default.nix b/pkgs/development/pharo/default.nix
index 2cf98d493698..3c17b2bd7933 100644
--- a/pkgs/development/pharo/default.nix
+++ b/pkgs/development/pharo/default.nix
@@ -23,8 +23,8 @@ let
pharo-sources = fetchurl {
# It is necessary to download from there instead of from the repository because that archive
# also contains artifacts necessary for the bootstrapping.
- url = "https://files.pharo.org/vm/pharo-spur64-headless/Linux-x86_64/source/PharoVM-10.0.5-2757766-Linux-x86_64-c-src.zip";
- hash = "sha256-i6WwhdVdyzmqGlx1Fn12mCq5+HnRORT65HEiJo0joCE=";
+ url = "https://files.pharo.org/vm/pharo-spur64-headless/Linux-x86_64/source/PharoVM-10.0.8-b323c5f-Linux-x86_64-c-src.zip";
+ hash = "sha256-5IHymk6yl3pMLG3FeM4nqos0yLYMa3B2+hYW08Yo1V0=";
};
library_path = makeLibraryPath [
libgit2
@@ -35,7 +35,7 @@ let
in
stdenv.mkDerivation {
pname = "pharo";
- version = "10.0.5";
+ version = "10.0.8";
src = pharo-sources;
buildInputs = [
@@ -64,6 +64,8 @@ stdenv.mkDerivation {
cmakeFlags = [
# Necessary to perform the bootstrapping without already having Pharo available.
"-DGENERATED_SOURCE_DIR=."
+ "-DALWAYS_INTERACTIVE=ON"
+ "-DBUILD_IS_RELEASE=ON"
"-DGENERATE_SOURCES=OFF"
# Prevents CMake from trying to download stuff.
"-DBUILD_BUNDLE=OFF"