summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-09-25 20:59:19 -0400
committerfigsoda <figsoda@pm.me>2022-09-25 20:59:19 -0400
commitf6e3a8e51241cea5cf994a6c9644589c47ba3c26 (patch)
tree9b971712aaf68babc96212b683cea512b7fd1cf6
parentab7290449498f45b7cef6f134f378209f27ac0f9 (diff)
downloadnixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.tar
nixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.tar.gz
nixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.tar.bz2
nixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.tar.lz
nixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.tar.xz
nixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.tar.zst
nixpkgs-f6e3a8e51241cea5cf994a6c9644589c47ba3c26.zip
scraper: init at 0.13.0
-rw-r--r--pkgs/tools/text/scraper/default.nix26
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/text/scraper/default.nix b/pkgs/tools/text/scraper/default.nix
new file mode 100644
index 00000000000..4118387a34a
--- /dev/null
+++ b/pkgs/tools/text/scraper/default.nix
@@ -0,0 +1,26 @@
+{ lib, rustPlatform, fetchCrate, installShellFiles }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "scraper";
+  version = "0.13.0";
+
+  src = fetchCrate {
+    inherit pname version;
+    sha256 = "sha256-5fFO51I6DqH1BBELt9FW2BCwYcsXVXaQLgocMn446Bs=";
+  };
+
+  cargoSha256 = "sha256-Y4m7C7v4ekJfb3BoWwDF+X8uuRH9muaTwPECgu4WaMQ=";
+
+  nativeBuildInputs = [ installShellFiles ];
+
+  postInstall = ''
+    installManPage scraper.1
+  '';
+
+  meta = with lib; {
+    description = "A tool to query HTML files with CSS selectors";
+    homepage = "https://github.com/causal-agent/scraper";
+    license = licenses.isc;
+    maintainers = with maintainers; [ figsoda ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index a4744947701..eb493671cba 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -10872,6 +10872,8 @@ with pkgs;
 
   scfbuild = python3.pkgs.callPackage ../tools/misc/scfbuild { };
 
+  scraper = callPackage ../tools/text/scraper { };
+
   scriptaculous = callPackage ../development/libraries/scriptaculous { };
 
   scrot = callPackage ../tools/graphics/scrot { };