9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
26 lines
685 B
Nix
26 lines
685 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "muffet";
|
|
version = "2.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "raviqqe";
|
|
repo = "muffet";
|
|
rev = "v${version}";
|
|
hash = "sha256-M+yId2cNTO1n+E0UmMJK7aLmeDdXnI3McqTxL5EvB+A=";
|
|
};
|
|
|
|
vendorHash = "sha256-NTQlhLlSPh9+Il08T9I2qc+BqIo9RniOFG9Dgeez1QA=";
|
|
|
|
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 ];
|
|
};
|
|
}
|