1{
2 lib,
3 rustPlatform,
4 fetchCrate,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "cargo-rdme";
9 version = "1.4.8";
10
11 src = fetchCrate {
12 inherit pname version;
13 hash = "sha256-lVu9w8l3+SeqiMoQ8Bjoslf7tWz49jrrE4g/pDU1axI=";
14 };
15
16 cargoHash = "sha256-W800jepxDv6OjbcxRKphAnDU2OuBGGGSLELe8gAfTr8=";
17
18 meta = {
19 description = "Cargo command to create the README.md from your crate's documentation";
20 mainProgram = "cargo-rdme";
21 homepage = "https://github.com/orium/cargo-rdme";
22 changelog = "https://github.com/orium/cargo-rdme/blob/v${version}/release-notes.md";
23 license = with lib.licenses; [ mpl20 ];
24 maintainers = with lib.maintainers; [ GoldsteinE ];
25 };
26}