biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / rdrview / default.nix
blobe4d56be3ffb9a14e71ddf59c0e4d1ee134e5765f
1 { lib, stdenv, fetchFromGitHub, libxml2, curl, libseccomp, installShellFiles }:
3 stdenv.mkDerivation {
4   pname = "rdrview";
5   version = "unstable-2021-05-30";
7   src = fetchFromGitHub {
8     owner = "eafer";
9     repo = "rdrview";
10     rev = "444ce3d6efd8989cd6ecfdc0560071b20e622636";
11     sha256 = "02VC8r8PdcAfMYB0/NtbPnhsWatpLQc4mW4TmSE1+zk=";
12   };
14   buildInputs = [ libxml2 curl libseccomp ];
15   nativeBuildInputs = [ installShellFiles ];
17   installPhase = ''
18     runHook preInstall
19     install -Dm755 rdrview -t $out/bin
20     installManPage rdrview.1
21     runHook postInstall
22   '';
24   enableParallelBuilding = true;
26   meta = with lib; {
27     description = "Command line tool to extract main content from a webpage";
28     homepage = "https://github.com/eafer/rdrview";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ djanatyn ];
31     mainProgram = "rdrview";
32   };