Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
633 B
Nix
28 lines
633 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rhack";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nakabonne";
|
|
repo = "rhack";
|
|
rev = "v${version}";
|
|
sha256 = "088ynf65szaa86pxwwasn3wwi00z5pn7i8w9gh5dyn983z4d8237";
|
|
};
|
|
|
|
cargoHash = "sha256-84dVBNvo45zG7s/tMY3O0Zv69CdcvjZCZX8siie6QnI=";
|
|
|
|
meta = with lib; {
|
|
description = "Temporary edit external crates that your project depends on";
|
|
mainProgram = "rhack";
|
|
homepage = "https://github.com/nakabonne/rhack";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|