2018-01-02 16:19:16 +00:00
|
|
|
{ stdenv, fetchFromGitHub, qmake, qtwebengine, qttools, wrapGAppsHook }:
|
2017-06-01 19:35:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-02 16:19:16 +00:00
|
|
|
pname = "rssguard";
|
2019-06-18 07:52:34 +01:00
|
|
|
version = "3.5.9";
|
2017-06-01 19:35:03 +01:00
|
|
|
|
2018-01-02 16:19:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martinrotter";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-06-18 07:52:34 +01:00
|
|
|
sha256 = "0dvjcazvrgxfxg1gvznxj8kx569v4ivns0brq00cn2yxyd4wx43s";
|
2017-06-01 19:35:03 +01:00
|
|
|
};
|
|
|
|
|
2017-06-06 00:24:11 +01:00
|
|
|
buildInputs = [ qtwebengine qttools ];
|
2017-06-18 18:32:51 +01:00
|
|
|
nativeBuildInputs = [ qmake wrapGAppsHook ];
|
2017-06-06 00:24:11 +01:00
|
|
|
qmakeFlags = [ "CONFIG+=release" ];
|
2017-06-01 19:35:03 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple RSS/Atom feed reader with online synchronization";
|
|
|
|
longDescription = ''
|
|
|
|
RSS Guard is a simple, light and easy-to-use RSS/ATOM feed aggregator
|
|
|
|
developed using Qt framework and with online feed synchronization support
|
|
|
|
for ownCloud/Nextcloud.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/martinrotter/rssguard;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ jluttine ];
|
|
|
|
};
|
|
|
|
}
|