2023-02-10 03:17:24 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "muffet";
|
2024-07-02 13:40:59 +00:00
|
|
|
version = "2.10.2";
|
2023-02-10 03:17:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raviqqe";
|
|
|
|
repo = "muffet";
|
|
|
|
rev = "v${version}";
|
2024-07-02 13:40:59 +00:00
|
|
|
hash = "sha256-v4qyVaeqSSG9cmkSGeweZIVv3Dgk/mHHvUpA0Cbio3c=";
|
2023-02-10 03:17:24 +00:00
|
|
|
};
|
|
|
|
|
2024-07-02 13:40:59 +00:00
|
|
|
vendorHash = "sha256-UJsncAKtjgF0dn7xAJQdKD8YEIwtFcpYJVWG9b66KRU=";
|
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
|
|
|
};
|
|
|
|
}
|