gnome.gnome-notes: fix build with meson 0.61

main
Bobby Rong 2 years ago
parent 9bc841fec1
commit 749258f858
No known key found for this signature in database
GPG Key ID: ED07364437C91161
  1. 13
      pkgs/desktops/gnome/apps/gnome-notes/default.nix

@ -1,8 +1,10 @@
{ lib, stdenv
{ stdenv
, lib
, meson
, ninja
, gettext
, fetchurl
, fetchpatch
, pkg-config
, wrapGAppsHook
, itstool
@ -32,6 +34,15 @@ stdenv.mkDerivation rec {
sha256 = "1gvvb2klkzbmyzwkjgmscdiqcl8lyz9b0rxb4igjz079csq6z805";
};
patches = [
# Fix build with meson 0.61
# data/appdata/meson.build:3:5: ERROR: Function does not take positional arguments.
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gnome-notes/-/commit/994af76ce5144062d55d141129bf6bf5fab002ee.patch";
sha256 = "sha256-z7dPOLZzaqvdqUIDy6+V3dKossRbG0EDjBu2oJCF6b4=";
})
];
doCheck = true;
postPatch = ''

Loading…
Cancel
Save