From d24951f9b139ab4ebd091fd9423be3f464625826 Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 3 Nov 2022 12:14:26 -0400 Subject: [PATCH] cargo-hakari: 0.9.14 -> 0.9.15, add figsoda as a maintainer --- pkgs/development/tools/rust/cargo-hakari/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-hakari/default.nix b/pkgs/development/tools/rust/cargo-hakari/default.nix index 492bebaa83d6..2dd6647033ff 100644 --- a/pkgs/development/tools/rust/cargo-hakari/default.nix +++ b/pkgs/development/tools/rust/cargo-hakari/default.nix @@ -1,15 +1,15 @@ -{ lib, fetchCrate, rustPlatform }: +{ lib, rustPlatform, fetchCrate }: rustPlatform.buildRustPackage rec { pname = "cargo-hakari"; - version = "0.9.14"; + version = "0.9.15"; src = fetchCrate { inherit pname version; - sha256 = "sha256-C4UBvxGZDpGfYokTzHQNkUkZqBNuKbE4pzOJ04sTDoY="; + sha256 = "sha256-jPvQKc5jDWHIOmJPpgsR9usYzjjCKlSL04N6Opgyiac="; }; - cargoHash = "sha256-eQrRBmlP206MKDlXxcJ64jD6/6mv3V/sv9TsybIx+8Q="; + cargoHash = "sha256-tmBgmIwFW/0+WQUEJFf6rFtRhoGn41BvZUIng8MsxQM="; meta = with lib; { description = "Manage workspace-hack packages to speed up builds in large workspaces."; @@ -19,7 +19,8 @@ rustPlatform.buildRustPackage rec { and cumulatively by 20-25% or more. ''; homepage = "https://crates.io/crates/cargo-hakari"; + changelog = "https://github.com/guppy-rs/guppy/blob/cargo-hakari-${version}/tools/cargo-hakari/CHANGELOG.md"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ macalinao ]; + maintainers = with maintainers; [ figsoda macalinao ]; }; }