mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, qtwebengine
|
|
, qttools
|
|
, wrapGAppsHook3
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rssguard";
|
|
version = "4.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "martinrotter";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-eF0jPT0gQnnBWu9IKfY0DwMwotL3IEjovqnQqx9v2NA=";
|
|
};
|
|
|
|
buildInputs = [ qtwebengine qttools ];
|
|
nativeBuildInputs = [ cmake wrapGAppsHook3 wrapQtAppsHook ];
|
|
qmakeFlags = [ "CONFIG+=release" ];
|
|
|
|
meta = with lib; {
|
|
description = "Simple RSS/Atom feed reader with online synchronization";
|
|
mainProgram = "rssguard";
|
|
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";
|
|
changelog = "https://github.com/martinrotter/rssguard/releases/tag/${version}";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|