From b9b1303196ace33290e41a78711211f5ba816088 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 18 Sep 2022 16:37:46 -0400 Subject: [PATCH] cargo-license: 0.5.0 -> 0.5.1, add figsoda as a maintainer --- pkgs/development/tools/rust/cargo-license/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-license/default.nix b/pkgs/development/tools/rust/cargo-license/default.nix index 8d6e8ca6ebfe..5d2f8765cdf9 100644 --- a/pkgs/development/tools/rust/cargo-license/default.nix +++ b/pkgs/development/tools/rust/cargo-license/default.nix @@ -2,19 +2,19 @@ rustPlatform.buildRustPackage rec { pname = "cargo-license"; - version = "0.5.0"; + version = "0.5.1"; src = fetchCrate { inherit pname version; - sha256 = "sha256-z68idQqjH0noNZLwoTtnLrIOXZPG4kAYS9+7yrFXKOA="; + sha256 = "sha256-M/QGM8jPLrDIoF1TVYDoVcHni1qaRCyZwHlYgia24Ro="; }; - cargoSha256 = "sha256-8QgDKgJC5l2h5ysQaICjToI7gGxnmlolTwEtxHJMlj8="; + cargoSha256 = "sha256-2m+ornrQQzijyF30uQ6xpEiid6r6I1wTa8nn6Q0wNKo="; meta = with lib; { description = "Cargo subcommand to see license of dependencies"; homepage = "https://github.com/onur/cargo-license"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ basvandijk ]; + maintainers = with maintainers; [ basvandijk figsoda ]; }; }