3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/feedreaders/rssguard/default.nix

31 lines
983 B
Nix
Raw Normal View History

{ stdenv, fetchgit, qmake, qtwebengine, qttools, wrapGAppsHook }:
2017-06-01 19:35:03 +01:00
stdenv.mkDerivation rec {
name = "rssguard-${version}";
version = "3.4.0";
2017-06-06 00:24:11 +01:00
src = fetchgit {
url = https://github.com/martinrotter/rssguard;
rev = "refs/tags/${version}";
2017-06-01 19:35:03 +01:00
sha256 = "1cdpfjj2lm1q2qh0w0mh505blcmi4n78458d3z3c1zn9ls9b9zsp";
fetchSubmodules = true;
};
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 ];
};
}