about summary refs log tree commit diff
path: root/pkgs/applications/networking/feedreaders/rssguard/default.nix
blob: a9e3c1d74e26a35cbf6a9c7b5d1cabae69a18a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchgit, qmakeHook, qtwebengine, qttools, wrapGAppsHook }:

stdenv.mkDerivation rec {
  name = "rssguard-${version}";
  version = "3.4.0";

  src = fetchgit {
    url = https://github.com/martinrotter/rssguard;
    rev = "refs/tags/${version}";
    sha256 = "1cdpfjj2lm1q2qh0w0mh505blcmi4n78458d3z3c1zn9ls9b9zsp";
    fetchSubmodules = true;
  };

  buildInputs =  [ qtwebengine qttools ];
  nativeBuildInputs = [ qmakeHook wrapGAppsHook ];
  qmakeFlags = [ "CONFIG+=release" ];

  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 ];
  };
}