cargo-hakari: 0.9.30 -> 0.9.33 (#346942)

This commit is contained in:
Peder Bergebakken Sundt
2024-10-21 03:47:44 +02:00
committed by GitHub
2 changed files with 7 additions and 7 deletions
@@ -6,16 +6,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-hakari";
version = "0.9.30";
version = "0.9.33";
src = fetchFromGitHub {
owner = "guppy-rs";
repo = "guppy";
rev = "cargo-hakari-${version}";
sha256 = "sha256-fwqMV8oTEYqS0Y/IXar1DSZ0Gns1qJ9oGhbdehScrgw=";
sha256 = "sha256-oJZiGXsOl00Bim/olYYSqt/p3j6dTw25IURcwdXYrAo=";
};
cargoHash = "sha256-DkPnQcoiytIYz780veSAhPnk70qkP3QvTJJ41csUThY=";
cargoHash = "sha256-V9QmaZYBXj26HJrP8gABwhhUPwBxnyLoO4O45lnPyew=";
cargoBuildFlags = [
"-p"
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage rec {
"cargo-hakari"
];
meta = with lib; {
meta = {
description = "Manage workspace-hack packages to speed up builds in large workspaces";
mainProgram = "cargo-hakari";
longDescription = ''
@@ -36,13 +36,14 @@ 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; [
license = with lib.licenses; [
mit
asl20
];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
figsoda
macalinao
nartsiss
];
};
}
-1
View File
@@ -15610,7 +15610,6 @@ with pkgs;
cargo-diet = callPackage ../development/tools/rust/cargo-diet { };
cargo-dist = callPackage ../development/tools/rust/cargo-dist { };
cargo-espmonitor = callPackage ../development/tools/rust/cargo-espmonitor { };
cargo-hakari = callPackage ../development/tools/rust/cargo-hakari { };
cargo-feature = callPackage ../development/tools/rust/cargo-feature { };
cargo-fund = callPackage ../development/tools/rust/cargo-fund {
inherit (darwin.apple_sdk.frameworks) Security;