nixpkgs/pkgs/applications/networking/offrss/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

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