1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4 pname = "cargo-sync-readme";
7 src = fetchFromGitHub {
11 sha256 = "sha256-n9oIWblTTuXFFQFN6mpQiCH5N7yg5fAp8v9vpB5/DAo=";
14 cargoSha256 = "sha256-DsB2C2ELuvuVSvxG/xztmnY2qfX8+Y7udbXlpRQoL/c=";
17 description = "A cargo plugin that generates a Markdown section in your README based on your Rust documentation";
18 mainProgram = "cargo-sync-readme";
19 homepage = "https://github.com/phaazon/cargo-sync-readme";
20 changelog = "https://github.com/phaazon/cargo-sync-readme/blob/${version}/CHANGELOG.md";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ b4dm4n matthiasbeyer ];