about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-30 19:16:15 -0500
committerGitHub <noreply@github.com>2023-10-30 19:16:15 -0500
commit8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5 (patch)
tree9bdebbd9723e11f16bc6c51e8b5852999be3e78d /pkgs/development/interpreters
parent289413f529b34acd1a94490a5f9d8111369cf406 (diff)
parente9d089bba06041d094c61165f282d85fd15be31b (diff)
downloadnixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.tar
nixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.tar.gz
nixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.tar.bz2
nixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.tar.lz
nixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.tar.xz
nixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.tar.zst
nixlib-8ad202d05bbf941cf85dfc3ad6d3b67887e5aff5.zip
Merge pull request #264306 from marsam/update-zuo
zuo: unstable-2023-01-02 -> unstable-2023-10-17 
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/zuo/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/zuo/default.nix b/pkgs/development/interpreters/zuo/default.nix
index f0d71673c2fb..95c05c3cf63c 100644
--- a/pkgs/development/interpreters/zuo/default.nix
+++ b/pkgs/development/interpreters/zuo/default.nix
@@ -1,18 +1,20 @@
-{ lib, stdenv, fetchFromGitHub }:
+{ lib, stdenv, fetchFromGitHub, unstableGitUpdater }:
 
 stdenv.mkDerivation rec {
   pname = "zuo";
-  version = "unstable-2023-01-02";
+  version = "unstable-2023-10-17";
 
   src = fetchFromGitHub {
     owner = "racket";
     repo = "zuo";
-    rev = "464aae9ae90dcb43ab003b922e4ae4d08611c55b";
-    hash = "sha256-O8p3dEXqAP2UNPNBla9AtkndxgL8UoVp/QygXOmcgWg=";
+    rev = "493e9cd08147add01bba9247f36759f095b87678";
+    hash = "sha256-gsCjB3V+A0kMZJZ9onZ57R6b1Ha0K+Q383DQoVGfY7I=";
   };
 
   doCheck = true;
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = with lib; {
     description = "A Tiny Racket for Scripting";
     homepage = "https://github.com/racket/zuo";