feedreader: fix build with latest libsecret

This commit is contained in:
worldofpeace 2019-09-21 17:27:51 -04:00 committed by Jan Tojnar
parent 752ebe1078
commit 7ba3608aa0
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
1 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala, gettext, python3
, appstream-glib, desktop-file-utils, wrapGAppsHook, gnome-online-accounts
, appstream-glib, desktop-file-utils, wrapGAppsHook, gnome-online-accounts, fetchpatch
, gtk3, libgee, libpeas, librest, webkitgtk, gsettings-desktop-schemas, hicolor-icon-theme
, curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite, gumbo, libxml2
}:
@ -33,6 +33,14 @@ stdenv.mkDerivation rec {
patchShebangs build-aux/meson_post_install.py
'';
patches = [
# Fixes build with libsecret
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/jangernert/FeedReader/pull/943.patch";
sha256 = "0anrwvcg6607dzvfrhy5qcnpxzflskb3iy3khdg191aw1h2mqhb5";
})
];
meta = with stdenv.lib; {
description = "A modern desktop application designed to complement existing web-based RSS accounts";
homepage = https://jangernert.github.io/FeedReader/;