rssguard: init at 3.4.0

This commit is contained in:
Jaakko Luttinen 2017-06-01 21:35:03 +03:00
parent 602a492bb7
commit fe53a6c17c
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub, qmakeHook, qtwebengine, qttools }:
stdenv.mkDerivation rec {
name = "rssguard-${version}";
version = "3.4.0";
src = fetchFromGitHub {
owner = "martinrotter";
repo = "rssguard";
# fetchFromGitHub doesn't support rev being a tag when fetchSubmodules=true,
# so need to use the hash commit. See:
# https://github.com/NixOS/nixpkgs/issues/26302
#rev = "${version}";
rev = "cb15ba92c9bc1b80e2b81d7976438e562ee1ef90";
sha256 = "1cdpfjj2lm1q2qh0w0mh505blcmi4n78458d3z3c1zn9ls9b9zsp";
fetchSubmodules = true;
};
buildInputs = [ qmakeHook qtwebengine qttools ];
preConfigure = ''
qmakeFlags="$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 ];
};
}

View File

@ -15162,6 +15162,9 @@ with pkgs;
polybar = callPackage ../applications/misc/polybar { };
rssguard = libsForQt5.callPackage ../applications/networking/feedreaders/rssguard { };
#rssguard = libsForQt5.callPackage ../applications/networking/newsreaders/rssguard { };
scudcloud = callPackage ../applications/networking/instant-messengers/scudcloud { };
shotcut = libsForQt5.callPackage ../applications/video/shotcut { };