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

  src = fetchFromGitHub {
    owner = "racket";
    repo = "zuo";
    rev = "4d85edb4f221de8a1748ee38dcc6963d8d2da33a";
    hash = "sha256-pFEXkByZpVnQgXK1DeFSEnalvhCTwOy75WrRojBM78U=";
  };

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