summary refs log tree commit diff
path: root/pkgs/development/interpreters/zuo/default.nix
blob: f0d71673c2fbb613fa10cf824c4b409731ba849b (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
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "zuo";
  version = "unstable-2023-01-02";

  src = fetchFromGitHub {
    owner = "racket";
    repo = "zuo";
    rev = "464aae9ae90dcb43ab003b922e4ae4d08611c55b";
    hash = "sha256-O8p3dEXqAP2UNPNBla9AtkndxgL8UoVp/QygXOmcgWg=";
  };

  doCheck = true;

  meta = with lib; {
    description = "A Tiny Racket for Scripting";
    homepage = "https://github.com/racket/zuo";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = [ maintainers.marsam ];
  };
}