summary refs log tree commit diff
path: root/pkgs/development/interpreters/zuo/default.nix
blob: ef302aacc7398076b1b45773f3e1e49b736a3d85 (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-11-10";

  src = fetchFromGitHub {
    owner = "racket";
    repo = "zuo";
    rev = "9e2aa26b0574b4ac53c838f6b59fd78f952c3923";
    hash = "sha256-wF+jj4+4uFofW9KhVqRF7EoWViRny2KuSfX/l6UN+yY=";
  };

  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 ];
  };
}