mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
parent
d3e0eb0fd8
commit
883f7ae4d6
26
pkgs/development/interpreters/rlci/default.nix
Normal file
26
pkgs/development/interpreters/rlci/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user