2023-02-10 03:17:24 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "muffet";
|
2023-05-19 13:58:13 +00:00
|
|
|
version = "2.8.1";
|
2023-02-10 03:17:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raviqqe";
|
|
|
|
repo = "muffet";
|
|
|
|
rev = "v${version}";
|
2023-05-19 13:58:13 +00:00
|
|
|
hash = "sha256-SQtAT4vK1jLwwMha/HuJjh3BtDTdxV7BDgmwxlK+lqc=";
|
2023-02-10 03:17:24 +00:00
|
|
|
};
|
|
|
|
|
2023-05-19 13:58:13 +00:00
|
|
|
vendorHash = "sha256-/qK4x44J2fDSXxGK3kczWY4NZVPPhRo4NMnyxV6W6CY=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|