2021-01-22 08:33:43 +00:00
|
|
|
{ stdenv, lib, fetchgit }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sfeed";
|
2021-02-01 14:22:55 +00:00
|
|
|
version = "0.9.21";
|
2021-01-22 08:33:43 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.codemadness.org/sfeed";
|
|
|
|
rev = version;
|
2021-02-01 14:22:55 +00:00
|
|
|
sha256 = "010wasp6hcnwbf0d3gaxmjpkvr85zyv2xxz2pnkwxyk2bbr1h6q8";
|
2021-01-22 08:33:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
2021-03-18 15:23:57 +00:00
|
|
|
platforms = platforms.all;
|
2021-01-22 08:33:43 +00:00
|
|
|
};
|
|
|
|
}
|