about summary refs log tree commit diff
path: root/pkgs/development/interpreters/zuo
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-04-22 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-04-22 04:20:00 +0000
commit683d310db70ff530a2ab2f0d3ebd7f18a32a9f00 (patch)
treecf828ddd98e96d4fbff6330e0acfb4bd51ea68fc /pkgs/development/interpreters/zuo
parenta3c605936a1d4ac47c61c875cf63b3d9e0b4415d (diff)
zuo: init at 2022-04-15
Diffstat (limited to 'pkgs/development/interpreters/zuo')
-rw-r--r--pkgs/development/interpreters/zuo/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/zuo/default.nix b/pkgs/development/interpreters/zuo/default.nix
new file mode 100644
index 0000000000000..f70e674eda649
--- /dev/null
+++ b/pkgs/development/interpreters/zuo/default.nix
@@ -0,0 +1,23 @@
+{ lib, stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "zuo";
+  version = "unstable-2022-04-23";
+
+  src = fetchFromGitHub {
+    owner = "racket";
+    repo = "zuo";
+    rev = "2f3e23bd374f9a6504de6000989ebf2adf67c80c";
+    sha256 = "sha256-TxX3iinfL1hXFlQlGQ7x52O6zvYoJYXrMfEfSL4Axig=";
+  };
+
+  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 ];
+  };
+}