Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rssguard: 4.5.3 -> 4.8.1 #367224

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 17 additions & 12 deletions pkgs/applications/networking/feedreaders/rssguard/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,35 @@
stdenv,
fetchFromGitHub,
cmake,
qtwebengine,
qttools,
wrapGAppsHook3,
wrapQtAppsHook,
kdePackages,
wrapGAppsHook4,
}:

stdenv.mkDerivation rec {
pname = "rssguard";
version = "4.5.3";
version = "4.8.1";

src = fetchFromGitHub {
owner = "martinrotter";
repo = pname;
tag = version;
sha256 = "sha256-eF0jPT0gQnnBWu9IKfY0DwMwotL3IEjovqnQqx9v2NA=";
sha256 = "sha256-qWxcjGl4EaLXZ0q6RVy+IKyBcqlx/yYojlGivSXy5Io=";
};

buildInputs = [
qtwebengine
qttools
kdePackages.qtwebengine
kdePackages.qttools
kdePackages.mpvqt
kdePackages.full
];
nativeBuildInputs = [
cmake
wrapGAppsHook3
wrapQtAppsHook
wrapGAppsHook4
kdePackages.wrapQtAppsHook
];
cmakeFlags = with lib; [
(cmakeFeature "CMAKE_BUILD_TYPE" "\"Release\"")
];
qmakeFlags = [ "CONFIG+=release" ];

meta = with lib; {
description = "Simple RSS/Atom feed reader with online synchronization";
Expand All @@ -43,6 +45,9 @@ stdenv.mkDerivation rec {
changelog = "https://github.com/martinrotter/rssguard/releases/tag/${version}";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ jluttine ];
maintainers = with maintainers; [
jluttine
tebriel
];
};
}