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

33 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, qmake, qtwebengine, qttools, wrapGAppsHook }:
2017-06-01 20:35:03 +02:00
stdenv.mkDerivation rec {
name = "rssguard-${version}";
2017-09-04 13:34:44 +02:00
version = "3.4.2";
2017-06-01 20:35:03 +02:00
2017-06-06 01:24:11 +02:00
src = fetchgit {
url = https://github.com/martinrotter/rssguard;
rev = "refs/tags/${version}";
2017-09-04 13:34:44 +02:00
sha256 = "0iy0fd3qr2dm0pc6xr7sin6cjfxfa0pxhxiwzs55dhsdk9zir62s";
# Submodules are required only for Windows (and one of them is a huge binary
# package ~400MB). See project wiki for more details.
fetchSubmodules = false;
2017-06-01 20:35:03 +02:00
};
2017-06-06 01:24:11 +02:00
buildInputs = [ qtwebengine qttools ];
nativeBuildInputs = [ qmake wrapGAppsHook ];
2017-06-06 01:24:11 +02:00
qmakeFlags = [ "CONFIG+=release" ];
2017-06-01 20:35:03 +02: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 ];
};
}