about summary refs log tree commit diff
path: root/pkgs/development/interpreters/rlci
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-06-20 22:20:43 -0400
committerfigsoda <figsoda@pm.me>2023-06-21 10:20:57 -0400
commit883f7ae4d6a19ad6a03f4cb265bf34a68ed76fc4 (patch)
treeaa56bf41fa1bdc124ca4e6f57a6ca7912c677846 /pkgs/development/interpreters/rlci
parentd3e0eb0fd8c13389534eebc84a6f4a8c9200c89d (diff)
rlci: init at 1.1.2
https://github.com/orsinium-labs/rlci
Diffstat (limited to 'pkgs/development/interpreters/rlci')
-rw-r--r--pkgs/development/interpreters/rlci/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/rlci/default.nix b/pkgs/development/interpreters/rlci/default.nix
new file mode 100644
index 0000000000000..ce8e0a9ee8f28
--- /dev/null
+++ b/pkgs/development/interpreters/rlci/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "rlci";
+  version = "1.1.2";
+
+  src = fetchFromGitHub {
+    owner = "orsinium-labs";
+    repo = "rlci";
+    rev = version;
+    hash = "sha256-+Hd1Ymm2LKnHUKoUlfN6D6pwebxgwJQHgqwMHXXtP6Y=";
+  };
+
+  cargoHash = "sha256-7Q6WSEiVLzRsyHNECbPhWN9prrN0A/nSJDtZWi09zzg=";
+
+  meta = with lib; {
+    description = "A lambda calculus interpreter";
+    homepage = "https://github.com/orsinium-labs/rlci";
+    changelog = "https://github.com/orsinium-labs/rlci/releases/tag/${src.rev}";
+    license = licenses.mit;
+    maintainers = with maintainers; [ figsoda ];
+  };
+}