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
718 B
Nix
28 lines
718 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "rep-grep";
|
|
version = "0-unstable-2024-02-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "robenkleene";
|
|
repo = "rep-grep";
|
|
rev = "10510d47e392cb9d30a861c69f702fd194b3fa88";
|
|
hash = "sha256-/dH+mNtNHaYFndVhoqmz4Sc3HeemoQt1HGD98mb9Qhw=";
|
|
};
|
|
|
|
cargoHash = "sha256-t4tfQaFq4EV4ZWeU+IestSFiSAIeVQslTZhLbpKVoO4=";
|
|
|
|
meta = with lib; {
|
|
description = "Command-line utility that takes grep-formatted lines and performs a find-and-replace on them";
|
|
homepage = "https://github.com/robenkleene/rep-grep";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ philiptaron ];
|
|
mainProgram = "rep";
|
|
};
|
|
}
|