0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
31 lines
1.1 KiB
Nix
31 lines
1.1 KiB
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-hakari";
|
|
version = "0.9.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guppy-rs";
|
|
repo = "guppy";
|
|
rev = "cargo-hakari-${version}";
|
|
sha256 = "sha256-wra3p3WAcGpsvW0DMMqWKFbAsrDTDnrYWQd6HS3sEls=";
|
|
};
|
|
|
|
cargoHash = "sha256-aNsG3ZmTMc5myOVs4h7uI5I5jjnjPd8AC2H7sSGmtHk=";
|
|
|
|
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 ];
|
|
};
|
|
}
|