evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-expand / package.nix
blobcb0b084ebf5f4e887f74d80a59c923ae28367e2d
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-expand";
8   version = "1.0.91";
10   src = fetchFromGitHub {
11     owner = "dtolnay";
12     repo = pname;
13     rev = version;
14     hash = "sha256-ucxqC5OqBqmM9+jKnGWLd9g2GDAXjAqSl+0ouhs6evA=";
15   };
17   cargoHash = "sha256-vDYpFJ+RFjouXgZc+ESPpkXA4sv5eHVZc93s+3KJj2g=";
19   meta = with lib; {
20     description = "Cargo subcommand to show result of macro expansion";
21     homepage = "https://github.com/dtolnay/cargo-expand";
22     changelog = "https://github.com/dtolnay/cargo-expand/releases/tag/${version}";
23     license = with licenses; [ mit asl20 ];
24     maintainers = with maintainers; [ figsoda xrelkd ];
25     mainProgram = "cargo-expand";
26   };