c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
31 lines
1.1 KiB
Nix
31 lines
1.1 KiB
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-hakari";
|
|
version = "0.9.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guppy-rs";
|
|
repo = "guppy";
|
|
rev = "cargo-hakari-${version}";
|
|
sha256 = "sha256-kg1iWku+zAXG9cCYCD4rqKzKNtDt0hMCnE5QyhJpLq8=";
|
|
};
|
|
|
|
cargoHash = "sha256-hrWsQXjWzhSVVj+bUviGEn+E7Lytzgf1r8VmQxJQubE=";
|
|
|
|
cargoBuildFlags = [ "-p" "cargo-hakari" ];
|
|
cargoTestFlags = [ "-p" "cargo-hakari" ];
|
|
|
|
meta = with lib; {
|
|
description = "Manage workspace-hack packages to speed up builds in large workspaces.";
|
|
longDescription = ''
|
|
cargo hakari is a command-line application to manage workspace-hack crates.
|
|
Use it to speed up local cargo build and cargo check commands by 15-95%,
|
|
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; [ figsoda macalinao ];
|
|
};
|
|
}
|