3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #277728 from marsam/update-zuo

zuo: unstable-2023-11-23 -> 1.9
This commit is contained in:
Nick Cao 2023-12-30 10:03:33 -05:00 committed by GitHub
commit b903832cba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,18 @@
{ lib, stdenv, fetchFromGitHub, unstableGitUpdater }:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zuo";
version = "unstable-2023-11-23";
version = "1.9";
src = fetchFromGitHub {
owner = "racket";
repo = "zuo";
rev = "4d85edb4f221de8a1748ee38dcc6963d8d2da33a";
hash = "sha256-pFEXkByZpVnQgXK1DeFSEnalvhCTwOy75WrRojBM78U=";
rev = "v${version}";
hash = "sha256-F7ba/4VVVhNDK/wqk+kgJKYxETS2pR9ZiDh0O0aOWn0=";
};
doCheck = true;
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "A Tiny Racket for Scripting";
homepage = "https://github.com/racket/zuo";