3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/interpreters/zuo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
553 B
Nix
Raw Normal View History

2022-04-22 05:20:00 +01:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zuo";
2022-07-26 05:20:00 +01:00
version = "unstable-2022-07-25";
2022-04-22 05:20:00 +01:00
src = fetchFromGitHub {
owner = "racket";
repo = "zuo";
2022-07-26 05:20:00 +01:00
rev = "18778d759e7af1d9c4b6ce7649a3aa4a49a2aa7f";
sha256 = "sha256-Y5+C1UdaeweYaGqomC1dFmTF8qGDquuP42Bn6QbZ9nk=";
2022-04-22 05:20:00 +01:00
};
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 ];
};
}