mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #26408 from jluttine/add-rssguard
rssguard: init at 3.4.0
This commit is contained in:
commit
17e9420726
2 changed files with 32 additions and 0 deletions
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -15162,6 +15162,8 @@ with pkgs;
|
|||
|
||||
polybar = callPackage ../applications/misc/polybar { };
|
||||
|
||||
rssguard = libsForQt5.callPackage ../applications/networking/feedreaders/rssguard { };
|
||||
|
||||
scudcloud = callPackage ../applications/networking/instant-messengers/scudcloud { };
|
||||
|
||||
shotcut = libsForQt5.callPackage ../applications/video/shotcut { };
|
||||
|
|
Loading…
Reference in a new issue