seahorse: add gpg 2.4.0 patch from upstream

Since gpg got upgraded from 2.3.7 to 2.4.0 the build script was failing

Related to 770bf7e2de
This commit is contained in:
Fabián Heredia Montiel 2023-02-02 21:05:17 -06:00
parent e2c729d56d
commit 839b6b5e20

View file

@ -1,5 +1,6 @@
{ stdenv
, lib
, fetchpatch
, fetchurl
, vala
, meson
@ -36,6 +37,14 @@ stdenv.mkDerivation rec {
hash = "sha256-Wx0b+6dPNlgifzyC4pbzMN0PzR70Y2tqIYIo/uXqgy0=";
};
patches = [
(fetchpatch {
name = "gpg-2.4.patch";
url = "https://gitlab.gnome.org/GNOME/seahorse/-/commit/9260c74779be3d7a378db0671af862ffa3573d42.patch";
hash = "sha256-4QiFgH4jC1ucmA9fFozUQZ3Mat76SgpYkMpRz80RH64=";
})
];
nativeBuildInputs = [
meson
ninja