biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-license / default.nix
blobee00c71c11da90c3b31b4ed083ee3b3dbd488be9
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     sha256 = "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   };