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

{ lib, stdenv, fetchFromGitHub }:
2022-04-22 04:20:00 +00:00
stdenv.mkDerivation rec {
pname = "zuo";
version = "1.9";
2022-04-22 04:20:00 +00:00
src = fetchFromGitHub {
owner = "racket";
repo = "zuo";
rev = "v${version}";
hash = "sha256-F7ba/4VVVhNDK/wqk+kgJKYxETS2pR9ZiDh0O0aOWn0=";
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 ];
};
}