blob: 1a3124f64ad5aefccffecaa09df3625e0bf07832 (
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
31
32
33
34
35
36
37
38
39
40
|
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qtwebengine
, qttools
, wrapGAppsHook3
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "rssguard";
version = "4.5.3";
src = fetchFromGitHub {
owner = "martinrotter";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-eF0jPT0gQnnBWu9IKfY0DwMwotL3IEjovqnQqx9v2NA=";
};
buildInputs = [ qtwebengine qttools ];
nativeBuildInputs = [ cmake wrapGAppsHook3 wrapQtAppsHook ];
qmakeFlags = [ "CONFIG+=release" ];
meta = with lib; {
description = "Simple RSS/Atom feed reader with online synchronization";
mainProgram = "rssguard";
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";
changelog = "https://github.com/martinrotter/rssguard/releases/tag/${version}";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ jluttine ];
};
}
|