lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 32 lines 854 B view raw
1{ lib, stdenv, fetchFromGitHub, libxml2, curl, libseccomp, installShellFiles }: 2 3stdenv.mkDerivation { 4 pname = "rdrview"; 5 version = "unstable-2021-05-30"; 6 7 src = fetchFromGitHub { 8 owner = "eafer"; 9 repo = "rdrview"; 10 rev = "444ce3d6efd8989cd6ecfdc0560071b20e622636"; 11 sha256 = "02VC8r8PdcAfMYB0/NtbPnhsWatpLQc4mW4TmSE1+zk="; 12 }; 13 14 buildInputs = [ libxml2 curl libseccomp ]; 15 nativeBuildInputs = [ installShellFiles ]; 16 17 installPhase = '' 18 runHook preInstall 19 install -Dm755 rdrview -t $out/bin 20 installManPage rdrview.1 21 runHook postInstall 22 ''; 23 24 enableParallelBuilding = true; 25 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 }; 32}