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 22, 2024
1 parent 0364fe3 commit a9375a3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22181,6 +22181,12 @@
github = "teatwig";
githubId = 18734648;
};
tebriel = {
email = "[email protected]";
name = "tebriel";
github = "tebriel";
githubId = 821688;
};
techknowlogick = {
email = "[email protected]";
github = "techknowlogick";
Expand Down
30 changes: 18 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,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
];
};
}

0 comments on commit a9375a3

Please sign in to comment.