nixpkgs/pkgs/applications/networking/feedreaders/rssguard/default.nix

31 lines
938 B
Nix
Raw Normal View History

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";
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;
sha256 = "0dvjcazvrgxfxg1gvznxj8kx569v4ivns0brq00cn2yxyd4wx43s";
2017-06-01 19:35:03 +01:00
};
2017-06-06 00:24:11 +01:00
buildInputs = [ qtwebengine qttools ];
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 ];
};
}