nixpkgs/pkgs/tools/security/xcrawl3r/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

33 lines
728 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "xcrawl3r";
version = "0.1.0";
src = fetchFromGitHub {
owner = "hueristiq";
repo = "xcrawl3r";
rev = "refs/tags/${version}";
hash = "sha256-K7UuWsteI8mEAGOF/g/EbT/Ch6sbmKhiiYB3npdDmFk=";
};
vendorHash = "sha256-/yBSrZdlVMZgcKcONBSq7C5IFC30TJL0z6FZRXm+HUs=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "CLI utility to recursively crawl webpages";
homepage = "https://github.com/hueristiq/xcrawl3r";
changelog = "https://github.com/hueristiq/xcrawl3r/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "xcrawl3r";
};
}