sfeed: init at 0.9.20 (#107173)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Matthias Beyer 2021-01-22 09:33:43 +01:00 committed by GitHub
parent 9a92886922
commit e3b4a6c2d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, lib, fetchgit }:
stdenv.mkDerivation rec {
pname = "sfeed";
version = "0.9.20";
src = fetchgit {
url = "git://git.codemadness.org/sfeed";
rev = version;
sha256 = "17bs31wns71fx7s06rdzqkghkgv86r9d9i3814rznyzi9484c7aq";
};
installPhase = ''
mkdir $out
make install PREFIX=$out
'';
meta = with lib; {
homepage = "https://codemadness.org/sfeed-simple-feed-parser.html";
description = "A RSS and Atom parser (and some format programs)";
longDescription = ''
It converts RSS or Atom feeds from XML to a TAB-separated file. There are
formatting programs included to convert this TAB-separated format to
various other formats. There are also some programs and scripts included
to import and export OPML and to fetch, filter, merge and order feed
items.
'';
license = licenses.isc;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.linux;
};
}

View file

@ -7662,6 +7662,8 @@ in
sewer = callPackage ../tools/admin/sewer { };
sfeed = callPackage ../tools/misc/sfeed { };
sftpman = callPackage ../tools/filesystems/sftpman { };
screenfetch = callPackage ../tools/misc/screenfetch { };