summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-22 09:33:43 +0100
committerGitHub <noreply@github.com>2021-01-22 09:33:43 +0100
commite3b4a6c2d8291c37476be4c0f769096ad7fec610 (patch)
treecafa5adc9b8698c7966d16ee3e192b0f8787e847 /pkgs/tools
parent9a92886922d507de4b34d98995ba3e19442624a2 (diff)
downloadnixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.tar
nixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.tar.gz
nixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.tar.bz2
nixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.tar.lz
nixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.tar.xz
nixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.tar.zst
nixpkgs-e3b4a6c2d8291c37476be4c0f769096ad7fec610.zip
sfeed: init at 0.9.20 (#107173)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/sfeed/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/misc/sfeed/default.nix b/pkgs/tools/misc/sfeed/default.nix
new file mode 100644
index 00000000000..6f205db432f
--- /dev/null
+++ b/pkgs/tools/misc/sfeed/default.nix
@@ -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;
+  };
+}