mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
2faf7f5770
Diff: https://github.com/raviqqe/muffet/compare/v2.9.1...v2.9.2 Changelog: https://github.com/raviqqe/muffet/releases/tag/v2.9.2
27 lines
685 B
Nix
27 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 ];
|
|
};
|
|
}
|