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

31 lines
968 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, qmake, qtwebengine, qttools, wrapGAppsHook, wrapQtAppsHook }:
2017-06-01 19:35:03 +01:00
stdenv.mkDerivation rec {
2018-01-02 16:19:16 +00:00
pname = "rssguard";
2021-02-25 16:23:30 +00:00
version = "3.9.0";
2017-06-01 19:35:03 +01:00
2018-01-02 16:19:16 +00:00
src = fetchFromGitHub {
owner = "martinrotter";
repo = pname;
rev = version;
2021-02-25 16:23:30 +00:00
sha256 = "sha256-pprWJIYAFYSTPhWVCW4dz3GWeAS53Vo8UXiyQ56Mwjo=";
2017-06-01 19:35:03 +01:00
};
2017-06-06 00:24:11 +01:00
buildInputs = [ qtwebengine qttools ];
nativeBuildInputs = [ qmake wrapGAppsHook wrapQtAppsHook ];
2017-06-06 00:24:11 +01:00
qmakeFlags = [ "CONFIG+=release" ];
2017-06-01 19:35:03 +01:00
meta = with lib; {
2017-06-01 19:35:03 +01:00
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";
2017-06-01 19:35:03 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ jluttine ];
};
}