2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, curl, libmrss, podofo, libiconv }:
|
2011-01-23 16:40:25 +00:00
|
|
|
|
2021-07-12 11:51:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "offrss";
|
|
|
|
version = "1.3";
|
2011-01-23 16:40:25 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
2011-01-23 16:40:25 +00:00
|
|
|
cp offrss $out/bin
|
|
|
|
'';
|
|
|
|
|
2017-09-05 21:04:38 +01:00
|
|
|
buildInputs = [ curl libmrss ]
|
2021-01-15 05:42:41 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) podofo
|
|
|
|
++ lib.optional (!stdenv.isLinux) libiconv;
|
2012-06-27 22:19:30 +01:00
|
|
|
|
2019-01-04 19:33:51 +00:00
|
|
|
configurePhase = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace '$(CC) $(CFLAGS) $(LDFLAGS)' '$(CXX) $(CFLAGS) $(LDFLAGS)'
|
2021-01-15 05:42:41 +00:00
|
|
|
'' + lib.optionalString (!stdenv.isLinux) ''
|
2012-06-27 22:19:30 +01:00
|
|
|
sed 's/#EXTRA/EXTRA/' -i Makefile
|
2021-01-15 05:42:41 +00:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2017-09-05 21:04:38 +01:00
|
|
|
sed 's/^PDF/#PDF/' -i Makefile
|
2012-06-27 22:19:30 +01:00
|
|
|
'';
|
2011-01-23 16:40:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-12 11:51:53 +01:00
|
|
|
url = "http://vicerveza.homeunix.net/~viric/soft/offrss/offrss-${version}.tar.gz";
|
2012-06-27 22:19:30 +01:00
|
|
|
sha256 = "1akw1x84jj2m9z60cvlvmz21qwlaywmw18pl7lgp3bj5nw6250p6";
|
2011-01-23 16:40:25 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://vicerveza.homeunix.net/~viric/cgi-bin/offrss";
|
2011-01-23 16:40:25 +00:00
|
|
|
description = "Offline RSS/Atom reader";
|
2020-06-26 10:03:54 +01:00
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
maintainers = with maintainers; [ viric ];
|
2021-01-15 05:42:41 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2011-01-23 16:40:25 +00:00
|
|
|
};
|
|
|
|
}
|