2023-02-10 03:17:24 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "muffet";
|
2023-06-30 02:48:45 +00:00
|
|
|
version = "2.9.2";
|
2023-02-10 03:17:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raviqqe";
|
|
|
|
repo = "muffet";
|
|
|
|
rev = "v${version}";
|
2023-06-30 02:48:45 +00:00
|
|
|
hash = "sha256-M+yId2cNTO1n+E0UmMJK7aLmeDdXnI3McqTxL5EvB+A=";
|
2023-02-10 03:17:24 +00:00
|
|
|
};
|
|
|
|
|
2023-06-29 13:06:39 +00:00
|
|
|
vendorHash = "sha256-NTQlhLlSPh9+Il08T9I2qc+BqIo9RniOFG9Dgeez1QA=";
|
2023-02-10 03:17:24 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A website link checker which scrapes and inspects all pages in a website recursively";
|
|
|
|
homepage = "https://github.com/raviqqe/muffet";
|
|
|
|
changelog = "https://github.com/raviqqe/muffet/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|