3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #199368 from figsoda/hakari

cargo-hakari: 0.9.14 -> 0.9.15, add figsoda as a maintainer
This commit is contained in:
figsoda 2022-11-04 10:31:14 -04:00 committed by GitHub
commit 6007000f3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}