blob: 90dabee0168c2bd113ebfe632fdf4dd2f215911c (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "xcrawl3r";
version = "1.0.0";
src = fetchFromGitHub {
owner = "hueristiq";
repo = "xcrawl3r";
tag = version;
hash = "sha256-Ojm5cBeXRtDGQfbDweLlD1V12PYJHxVbO2g1X1Wt/B8=";
};
vendorHash = "sha256-rBKpYB7t9zdduqZA1VwCBp+kXpB8nABhTo+IaoOE8bE=";
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";
};
}
|