2023-02-10 03:17:24 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "muffet";
|
2024-11-03 18:26:44 +00:00
|
|
|
version = "2.10.6";
|
2023-02-10 03:17:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raviqqe";
|
|
|
|
repo = "muffet";
|
|
|
|
rev = "v${version}";
|
2024-11-03 18:26:44 +00:00
|
|
|
hash = "sha256-9dra/LhtSIWN2pjNEJMITz/GzyWRtXTyQBqBxRhjARc=";
|
2023-02-10 03:17:24 +00:00
|
|
|
};
|
|
|
|
|
2024-11-03 18:26:44 +00:00
|
|
|
vendorHash = "sha256-MYU8zgqI05oBep/dehs59S3JcrThrgLEzIgrIr/Tr4Y=";
|
2023-02-10 03:17:24 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "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 ];
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "muffet";
|
2023-02-10 03:17:24 +00:00
|
|
|
};
|
|
|
|
}
|