evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-bundle-licenses / package.nix
blob1a6cc5ca07461ea04af89118d5f86388f59ae4ab
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-bundle-licenses";
8   version = "1.3.0";
10   src = fetchFromGitHub {
11     owner = "sstadick";
12     repo = "cargo-bundle-licenses";
13     rev = "v${version}";
14     hash = "sha256-pWQU0IMahbFJR7oRUqnz73cB8yRbTpkh5NASmUKg0E0=";
15   };
17   cargoHash = "sha256-eUY3dyyWbqSqFqafdZ2AdI7vsH60vCRNk2cAGJw0ROk=";
19   meta = with lib; {
20     description = "Generate a THIRDPARTY file with all licenses in a cargo project";
21     mainProgram = "cargo-bundle-licenses";
22     homepage = "https://github.com/sstadick/cargo-bundle-licenses";
23     changelog = "https://github.com/sstadick/cargo-bundle-licenses/blob/${src.rev}/CHANGELOG.md";
24     license = with licenses; [ mit asl20 ];
25     maintainers = with maintainers; [ figsoda matthiasbeyer ];
26   };