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
664 B
Nix
28 lines
664 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "hydrasect";
|
|
version = "0.1.0-unstable-2025-08-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blitz";
|
|
repo = "hydrasect";
|
|
rev = "88161c6d8dce16bf832599cf8ab544bbe5857c00";
|
|
hash = "sha256-Na7MlT+OXHZBtCKqJ0IzK4k3XfvQhsY+lnUJFG66YDU=";
|
|
};
|
|
|
|
cargoHash = "sha256-muqG74Ze6aUURPutuKlXvq5ayglJ7TGAzeji89lsoLk=";
|
|
|
|
meta = {
|
|
description = "Tool that makes bisecting nixpkgs pleasant";
|
|
homepage = "https://github.com/blitz/hydrasect";
|
|
license = lib.licenses.eupl12;
|
|
maintainers = with lib.maintainers; [ kiara ];
|
|
mainProgram = "hydrasect";
|
|
};
|
|
}
|