nixpkgs/pkgs/tools/misc/sfeed/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2021-12-07 08:55:08 +01:00
{ stdenv, lib, fetchgit, ncurses }:
stdenv.mkDerivation rec {
pname = "sfeed";
2022-02-08 10:57:24 +01:00
version = "1.2";
src = fetchgit {
url = "git://git.codemadness.org/sfeed";
rev = version;
2022-02-08 10:57:24 +01:00
sha256 = "sha256-cx+mIVrY9tB5k1YnAHkpGahXVG6S+JBshJKkzEbcKZI=";
};
2021-12-07 08:55:08 +01:00
buildInputs = [ ncurses ];
makeFlags = [ "RANLIB:=$(RANLIB)" "SFEED_CURSES_LDFLAGS:=-lncurses" ]
# use macOS's strlcat() and strlcpy() instead of vendored ones
++ lib.optional stdenv.isDarwin "COMPATOBJ:=";
2021-11-13 09:18:31 +01:00
installFlags = [ "PREFIX=$(out)" ];
2021-12-07 08:55:08 +01:00
# otherwise does not find SIGWINCH
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-D_DARWIN_C_SOURCE";
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 16:23:57 +01:00
platforms = platforms.all;
};
}