Skip to content

Commit

Permalink
rssguard: 4.5.3 -> 4.8.1
Browse files Browse the repository at this point in the history
Updates from QT5->QT6 and feature updates
https://github.com/martinrotter/rssguard/releases/tag/4.8.1
  • Loading branch information
tebriel committed Dec 21, 2024
1 parent 0364fe3 commit f6d4317
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 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,36 @@
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;
rev = "refs/tags/${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
];
qmakeFlags = [ "CONFIG+=release" ];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=\"Release\""
];
# qmakeFlags = [ "CONFIG+=release" ];

meta = with lib; {
description = "Simple RSS/Atom feed reader with online synchronization";
Expand All @@ -43,6 +46,6 @@ 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 ];
};
}

0 comments on commit f6d4317

Please sign in to comment.