summary refs log tree commit diff
path: root/pkgs/development/interpreters/zuo/default.nix
blob: 95c05c3cf63cf58366c111b27f7132ba923de3df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, unstableGitUpdater }:

stdenv.mkDerivation rec {
  pname = "zuo";
  version = "unstable-2023-10-17";

  src = fetchFromGitHub {
    owner = "racket";
    repo = "zuo";
    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";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = [ maintainers.marsam ];
  };
}