feedreader: fix build with latest libsecret
This commit is contained in:
parent
752ebe1078
commit
7ba3608aa0
|
@ -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/;
|
||||
|
|
Loading…
Reference in New Issue