nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, stdenv, fetchFromGitHub }:
2
3stdenv.mkDerivation rec {
4 pname = "zuo";
5 version = "unstable-2023-01-02";
6
7 src = fetchFromGitHub {
8 owner = "racket";
9 repo = "zuo";
10 rev = "464aae9ae90dcb43ab003b922e4ae4d08611c55b";
11 hash = "sha256-O8p3dEXqAP2UNPNBla9AtkndxgL8UoVp/QygXOmcgWg=";
12 };
13
14 doCheck = true;
15
16 meta = with lib; {
17 description = "A Tiny Racket for Scripting";
18 homepage = "https://github.com/racket/zuo";
19 license = licenses.mit;
20 platforms = platforms.all;
21 maintainers = [ maintainers.marsam ];
22 };
23}