libhttpseverywhere: fix build with meson 0.60

Adds patch from https://gitlab.gnome.org/GNOME/libhttpseverywhere/-/merge_requests/1
main
Naïm Favier 2 years ago
parent 9ab8b1400c
commit 7d97b7dcf5
No known key found for this signature in database
GPG Key ID: 49B07322580B7EE2
  1. 7
      pkgs/development/libraries/libhttpseverywhere/default.nix

@ -15,12 +15,17 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ vala gobject-introspection meson ninja pkg-config ];
buildInputs = [ glib libgee json-glib libsoup libarchive ];
# Fixes build with vala >=0.42
patches = [
# Fixes build with vala >=0.42
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/libhttpseverywhere/commit/6da08ef1ade9ea267cecf14dd5cb2c3e6e5e50cb.patch";
sha256 = "1nwjlh8iqgjayccwdh0fbpq2g1h8bg1k1g9i324f2bhhvyhmpq8f";
})
# fix build with meson 0.60
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/libhttpseverywhere/-/commit/4c38b2ca25802c464f3204a62815201d8cf549fd.patch";
sha256 = "sha256-1+fmR0bpvJ9ISN2Hr+BTIQz+Bf6VfY1RdVZ/OohUlWU=";
})
];
mesonFlags = [ "-Denable_valadoc=true" ];

Loading…
Cancel
Save