mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
rssguard: init at 3.4.0
This commit is contained in:
parent
602a492bb7
commit
fe53a6c17c
2 changed files with 40 additions and 0 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue