nixpkgs-suyu/pkgs/tools/package-management/cargo-about/default.nix

22 lines
640 B
Nix
Raw Normal View History

2020-01-21 16:42:06 +01:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "cargo-about";
2021-03-19 13:08:15 +01:00
version = "0.3.0";
2020-01-21 16:42:06 +01:00
src = fetchFromGitHub {
owner = "EmbarkStudios";
repo = "cargo-about";
rev = version;
2021-03-19 13:08:15 +01:00
sha256 = "sha256-MsXNneKj2xCci1guj1TKcIrX7XByJ5/lWUmjxAsgzPY=";
2020-01-21 16:42:06 +01:00
};
2021-03-19 13:08:15 +01:00
cargoSha256 = "sha256-NdzgIB6uXMtGiLwOACEIeAb4iv7mYLnwRte3M/TkSMA=";
2020-01-21 16:42:06 +01:00
meta = with lib; {
description = "Cargo plugin to generate list of all licenses for a crate";
homepage = "https://github.com/EmbarkStudios/cargo-about";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ evanjs ];
};
}