lol

Merge pull request #144333 from figsoda/update-cargo-about

cargo-about: 0.3.0 -> 0.4.1

authored by

figsoda and committed by
GitHub
f8a407fe c19a058e

+7 -7
+7 -7
pkgs/tools/package-management/cargo-about/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, stdenv, libiconv }: 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 2 3 rustPlatform.buildRustPackage rec { 3 4 pname = "cargo-about"; 4 - version = "0.3.0"; 5 + version = "0.4.1"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "EmbarkStudios"; 8 9 repo = "cargo-about"; 9 10 rev = version; 10 - sha256 = "sha256-MsXNneKj2xCci1guj1TKcIrX7XByJ5/lWUmjxAsgzPY="; 11 + sha256 = "sha256-Am0VwF37fYsZvUogxnSlP/kwy20J7maFu3Is8f/1b1E="; 11 12 }; 12 13 13 - cargoSha256 = "sha256-ssAmY+o+/2+C9sol+PeFlpNwVuN5JNoofgkr3cUW+S4="; 14 - 15 - buildInputs = lib.optional stdenv.isDarwin libiconv; 14 + cargoSha256 = "sha256-gf5OtRGjXmGbnXA4ZYOys6JU+JkF+rYnRSnjy3JE7c0="; 16 15 17 16 meta = with lib; { 18 17 description = "Cargo plugin to generate list of all licenses for a crate"; 19 18 homepage = "https://github.com/EmbarkStudios/cargo-about"; 19 + changelog = "https://github.com/EmbarkStudios/cargo-about/blob/${version}/CHANGELOG.md"; 20 20 license = with licenses; [ mit /* or */ asl20 ]; 21 - maintainers = with maintainers; [ evanjs ]; 21 + maintainers = with maintainers; [ evanjs figsoda ]; 22 22 }; 23 23 }