fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, rustPlatform, fetchCrate, installShellFiles }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "scraper";
5 version = "0.19.0";
6
7 src = fetchCrate {
8 inherit pname version;
9 hash = "sha256-HfZ8zyjghTXIyIYS+MaGF5OdMLJv6NIjQswdn/tvQbU=";
10 };
11
12 cargoHash = "sha256-py8VVciNJ36/aSTlTH+Bx36yrh/8AuzB9XNNv/PrFak=";
13
14 nativeBuildInputs = [ installShellFiles ];
15
16 postInstall = ''
17 installManPage scraper.1
18 '';
19
20 meta = with lib; {
21 description = "A tool to query HTML files with CSS selectors";
22 mainProgram = "scraper";
23 homepage = "https://github.com/causal-agent/scraper";
24 changelog = "https://github.com/causal-agent/scraper/releases/tag/v${version}";
25 license = licenses.isc;
26 maintainers = with maintainers; [ figsoda ];
27 };
28}