biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-sync-readme / default.nix
blobc4205fb1a660ff43f03495d18ad6afb6cee1bfe7
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-sync-readme";
5   version = "1.1";
7   src = fetchFromGitHub {
8     owner = "phaazon";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-n9oIWblTTuXFFQFN6mpQiCH5N7yg5fAp8v9vpB5/DAo=";
12   };
14   cargoSha256 = "sha256-DsB2C2ELuvuVSvxG/xztmnY2qfX8+Y7udbXlpRQoL/c=";
16   meta = with lib; {
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 ];
23   };