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
551 B
Nix
Raw Normal View History

2022-04-22 04:20:00 +00:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zuo";
2022-11-23 04:20:00 +00:00
version = "unstable-2022-11-15";
2022-04-22 04:20:00 +00:00
src = fetchFromGitHub {
owner = "racket";
repo = "zuo";
2022-11-23 04:20:00 +00:00
rev = "7492a8aa3721bfad7d158497313b913537a8b12d";
hash = "sha256-9tMYaKjBTGm9NjcytpUS9mgBlE9L1U2VECsqfU706u4=";
2022-04-22 04:20:00 +00: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 ];
};
}