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

32 lines
970 B
Nix
Raw Normal View History

2018-01-02 16:19:16 +00:00
{ stdenv, fetchFromGitHub, qmake, qtwebengine, qttools, wrapGAppsHook }:
2017-06-01 18:35:03 +00:00
stdenv.mkDerivation rec {
2018-01-02 16:19:16 +00:00
name = "${pname}-${version}";
pname = "rssguard";
2018-02-26 11:26:32 +00:00
version = "3.5.6";
2017-06-01 18:35:03 +00:00
2018-01-02 16:19:16 +00:00
src = fetchFromGitHub {
owner = "martinrotter";
repo = pname;
rev = version;
2018-02-26 11:26:32 +00:00
sha256 = "1pdas7hg3nzykm3qi951fk25c9s6gjb7my82b9xzjn2yd7ks71by";
2017-06-01 18:35:03 +00:00
};
2017-06-05 23:24:11 +00:00
buildInputs = [ qtwebengine qttools ];
nativeBuildInputs = [ qmake wrapGAppsHook ];
2017-06-05 23:24:11 +00:00
qmakeFlags = [ "CONFIG+=release" ];
2017-06-01 18:35:03 +00: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 ];
};
}