27 lines
685 B
Nix
27 lines
685 B
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "muffet";
|
||
|
version = "2.7.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "raviqqe";
|
||
|
repo = "muffet";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-Kk0HRs4mzpEI9URFIegAVWejBZLGWW08vdsjw9ZHLxU=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-auTDSL3J+LuW6M5LRAWJCvL1xAiyqluPt6EQpFztYpA=";
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|