evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-license / package.nix
blob868ad03f5068a3a6a1aa74c046eafbd7206184d2
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-license";
5   version = "0.6.1";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-qwyWj0vPWQOZYib2ZZutX25a4wwnG1kFAiRCWqGyVms=";
10   };
12   cargoHash = "sha256-ifw/n7eejUWUqhieDLojuO3xgosn28NnjAKkq/ZSLEI=";
14   meta = with lib; {
15     description = "Cargo subcommand to see license of dependencies";
16     mainProgram = "cargo-license";
17     homepage = "https://github.com/onur/cargo-license";
18     license = with licenses; [ mit ];
19     maintainers = with maintainers; [ basvandijk figsoda matthiasbeyer ];
20   };