Merge pull request #331820 from ozwaldorf/cargo-hakari-0.9.30

cargo-hakari: 0.9.28 -> 0.9.30
This commit is contained in:
Vlad M. 2024-08-04 09:45:53 +03:00 committed by GitHub
commit e348e455eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,30 @@
{ lib, rustPlatform, fetchFromGitHub }:
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-hakari";
version = "0.9.28";
version = "0.9.30";
src = fetchFromGitHub {
owner = "guppy-rs";
repo = "guppy";
rev = "cargo-hakari-${version}";
sha256 = "sha256-mTemccM/C9M2kso9PNpd0UGEZJd/tBd1PjCpbDFFtNo=";
sha256 = "sha256-fwqMV8oTEYqS0Y/IXar1DSZ0Gns1qJ9oGhbdehScrgw=";
};
cargoHash = "sha256-UaSW9PZMUhqjvRM0/URHaOfofG5Ap3bvKgAHa+H+MFw=";
cargoHash = "sha256-DkPnQcoiytIYz780veSAhPnk70qkP3QvTJJ41csUThY=";
cargoBuildFlags = [ "-p" "cargo-hakari" ];
cargoTestFlags = [ "-p" "cargo-hakari" ];
cargoBuildFlags = [
"-p"
"cargo-hakari"
];
cargoTestFlags = [
"-p"
"cargo-hakari"
];
meta = with lib; {
description = "Manage workspace-hack packages to speed up builds in large workspaces";
@ -26,7 +36,13 @@ rustPlatform.buildRustPackage rec {
'';
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; [ figsoda macalinao ];
license = with licenses; [
mit
asl20
];
maintainers = with maintainers; [
figsoda
macalinao
];
};
}