From e8d09fc809a932a1275042a954e2d0a876de8e2b Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 16 Jun 2023 16:19:06 +0300 Subject: [PATCH] opensmalltalk-vm: fix eval --- pkgs/development/compilers/opensmalltalk-vm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/opensmalltalk-vm/default.nix b/pkgs/development/compilers/opensmalltalk-vm/default.nix index 82481a8e17eb..3ee6953ba4de 100644 --- a/pkgs/development/compilers/opensmalltalk-vm/default.nix +++ b/pkgs/development/compilers/opensmalltalk-vm/default.nix @@ -180,7 +180,7 @@ let platform = stdenv.targetPlatform.system; in - vmsByPlatform.${platform} or throw ( + vmsByPlatform.${platform} or (throw ( "Unsupported platform ${platform}: only the following platforms are supported: " + builtins.toString (builtins.attrNames vmsByPlatform) - ) + ))