biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / rhai-doc / default.nix
blobdd07b8df9926cc01af42b0570e19e69dc781926c
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "rhai-doc";
8   version = "0.2.3";
10   src = fetchFromGitHub {
11     owner = "rhaiscript";
12     repo = "rhai-doc";
13     rev = "v${version}";
14     hash = "sha256-GZq5C8Q95OHKftEkps4Y6X6sAc4pzSfSq3ELUW/kPWI=";
15   };
17   cargoHash = "sha256-dJMqaDQVSrvZPwjPFixgqRRzxPJW/f1nO+81kHwGmYU=";
19   meta = with lib; {
20     description = "Tool to auto-generate documentation for Rhai source code";
21     homepage = "https://github.com/rhaiscript/rhai-doc";
22     changelog = "https://github.com/rhaiscript/rhai-doc/releases/tag/${src.rev}";
23     license = with licenses; [ asl20 mit ];
24     maintainers = with maintainers; [ figsoda ];
25     mainProgram = "rhai-doc";
26   };