rlci: init at 1.1.2

https://github.com/orsinium-labs/rlci
This commit is contained in:
figsoda 2023-06-20 22:20:43 -04:00
parent d3e0eb0fd8
commit 883f7ae4d6
2 changed files with 28 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -11971,6 +11971,8 @@ with pkgs;
richgo = callPackage ../development/tools/richgo { };
rlci = callPackage ../development/interpreters/rlci { };
rs = callPackage ../tools/text/rs { };
rst2html5 = callPackage ../tools/text/rst2html5 { };