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

  src = fetchFromGitHub {
    owner = "racket";
    repo = "zuo";
    rev = "v${version}";
    hash = "sha256-F7ba/4VVVhNDK/wqk+kgJKYxETS2pR9ZiDh0O0aOWn0=";
  };

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