mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 13:12:10 -08:00
45 lines
899 B
Nix
45 lines
899 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libxml2,
|
|
curl,
|
|
libseccomp,
|
|
installShellFiles,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "rdrview";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eafer";
|
|
repo = "rdrview";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-UFHRsaLGa/jv/S+VXtXIMgLuQUPgqbRgD35bBrJyuZA=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libxml2
|
|
curl
|
|
libseccomp
|
|
];
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm755 rdrview -t $out/bin
|
|
installManPage rdrview.1
|
|
runHook postInstall
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Command line tool to extract main content from a webpage";
|
|
homepage = "https://github.com/eafer/rdrview";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ djanatyn ];
|
|
mainProgram = "rdrview";
|
|
};
|
|
})
|