From 085cfa0b3c600dd3d58ed8c28a9e5cb131ee8d8a Mon Sep 17 00:00:00 2001 From: Colin King Date: Sun, 5 Jul 2026 13:03:28 -0700 Subject: [PATCH] shen-sbcl: 41.1 -> 41.2 Bump shen-sbcl to 41.2. --- pkgs/by-name/sh/shen-sbcl/package.nix | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/sh/shen-sbcl/package.nix b/pkgs/by-name/sh/shen-sbcl/package.nix index 35eaafd5ccc6..5364cabe1b2d 100644 --- a/pkgs/by-name/sh/shen-sbcl/package.nix +++ b/pkgs/by-name/sh/shen-sbcl/package.nix @@ -10,15 +10,15 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "shen-sbcl"; - version = "41.1"; + version = "41.2"; src = fetchzip { - url = "https://www.shenlanguage.org/Download/S${finalAttrs.version}.zip"; - hash = "sha256-v/hlP23yfpkpFEDCTKYoxeMJbfR2qVF9LFUkqsFwo6g="; + url = "https://shenlanguage.org/Download/S${finalAttrs.version}.zip"; + hash = "sha256-hgO/g0XefSXn5pjiV5LzGmoZ8nsqmZcyZpK6nbcE0es="; }; - sourceRoot = "${finalAttrs.src.name}/S41"; nativeBuildInputs = [ sbcl ]; + strictDeps = true; dontStrip = true; # necessary to prevent runtime errors with sbcl buildPhase = '' @@ -45,15 +45,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { # remove interactive prompts during image creation # shen/tk requires further configuration and isn't supported by default substituteInPlace Lib/install.shen \ - --replace-fail '(y-or-n? "install standard library?")' '${ - if installStandardLibrary then "true" else "false" - }' \ - --replace-fail '(y-or-n? "install concurrency? (required for Shen/tk)")' '${ - if installConcurrency then "true" else "false" - }' \ + --replace-fail '(y-or-n? "install standard library?")' '${lib.boolToString installStandardLibrary}' \ + --replace-fail '(y-or-n? "install concurrency? (required for Shen/tk)")' '${lib.boolToString installConcurrency}' \ --replace-fail '(y-or-n? "install Shen/tk + IDE?")' 'false' \ - --replace-fail '(y-or-n? "install THORN?")' '${if installThorn then "true" else "false"}' \ - --replace-fail '(y-or-n? "install Logic Lab?")' '${if installLogicLab then "true" else "false"}' + --replace-fail '(y-or-n? "install THORN?")' '${lib.boolToString installThorn}' \ + --replace-fail '(y-or-n? "install Logic Lab?")' '${lib.boolToString installLogicLab}' ''; meta = {