2023-02-16 17:41:37 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "muffet";
|
2024-09-26 11:04:55 +00:00
|
|
|
version = "2.10.3";
|
2023-02-16 17:41:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raviqqe";
|
|
|
|
repo = "muffet";
|
|
|
|
rev = "v${version}";
|
2024-09-26 11:04:55 +00:00
|
|
|
hash = "sha256-+g8DXvNWs7tqgxeZl7FWudbZRRx9N4/Cb6jQkuxnI98=";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
vendorHash = "sha256-JMQgDG0MQuDJBrcz7uf872bXkz4BM+bC1v/GhkuxeYU=";
|
2023-02-16 17:41:37 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Website link checker which scrapes and inspects all pages in a website recursively";
|
2023-02-16 17:41:37 +00:00
|
|
|
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-29 20:09:43 +00:00
|
|
|
mainProgram = "muffet";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
|
|
|
}
|