diff --git a/pkgs/development/tools/misc/rhai-doc/default.nix b/pkgs/development/tools/misc/rhai-doc/default.nix new file mode 100644 index 000000000000..dd07b8df9926 --- /dev/null +++ b/pkgs/development/tools/misc/rhai-doc/default.nix @@ -0,0 +1,27 @@ +{ lib +, rustPlatform +, fetchFromGitHub +}: + +rustPlatform.buildRustPackage rec { + pname = "rhai-doc"; + version = "0.2.3"; + + src = fetchFromGitHub { + owner = "rhaiscript"; + repo = "rhai-doc"; + rev = "v${version}"; + hash = "sha256-GZq5C8Q95OHKftEkps4Y6X6sAc4pzSfSq3ELUW/kPWI="; + }; + + cargoHash = "sha256-dJMqaDQVSrvZPwjPFixgqRRzxPJW/f1nO+81kHwGmYU="; + + meta = with lib; { + description = "Tool to auto-generate documentation for Rhai source code"; + homepage = "https://github.com/rhaiscript/rhai-doc"; + changelog = "https://github.com/rhaiscript/rhai-doc/releases/tag/${src.rev}"; + license = with licenses; [ asl20 mit ]; + maintainers = with maintainers; [ figsoda ]; + mainProgram = "rhai-doc"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 07f03a2642d1..d1e0027abe1c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12486,6 +12486,8 @@ with pkgs; rekor-cli rekor-server; + rhai-doc = callPackage ../development/tools/misc/rhai-doc { }; + rich-cli = callPackage ../misc/rich-cli { }; richgo = callPackage ../development/tools/richgo { };