python312Packages.argos-translate-files: 1.1.4 -> 1.2.0 (#361677)
[NixPkgs.git] / pkgs / by-name / xc / xcrawl3r / package.nix
blobfd3a33eaac2b5144a2c7caca39af043d079c3ec1
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "xcrawl3r";
8   version = "0.2.0";
10   src = fetchFromGitHub {
11     owner = "hueristiq";
12     repo = "xcrawl3r";
13     rev = "refs/tags/${version}";
14     hash = "sha256-W1cvSvRnDGFp4br8s/nL+owIGWTJ1bVX6kvmeTLUuuI=";
15   };
17   vendorHash = "sha256-fHdtqjFmT+8cmy2SxjjBvw5Rct7lA2ksGVmm/9ncbRI=";
19   ldflags = [
20     "-s"
21     "-w"
22   ];
24   meta = with lib; {
25     description = "CLI utility to recursively crawl webpages";
26     homepage = "https://github.com/hueristiq/xcrawl3r";
27     changelog = "https://github.com/hueristiq/xcrawl3r/releases/tag/${version}";
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30     mainProgram = "xcrawl3r";
31   };