gtg: fix build with meson 0.60

Adds upstream patch from https://github.com/getting-things-gnome/gtg/pull/729
to fix the error about unknown keyword arguments

+8
+8
pkgs/applications/office/gtg/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 , meson 4 5 , python3Packages 5 6 , ninja ··· 25 26 sha256 = "0b2slm7kjq6q8c7v4m7aqc8m1ynjxn3bl7445srpv1xc0dilq403"; 26 27 }; 27 28 29 + patches = [ 30 + # fix build with meson 0.60 (https://github.com/getting-things-gnome/gtg/pull/729) 31 + (fetchpatch { 32 + url = "https://github.com/getting-things-gnome/gtg/commit/1809d10663ae3d8f69c04138b66f9b4e66ee14f6.patch"; 33 + sha256 = "sha256-bYr5PAsuvcSqTf0vaJj2APtuBrwHdhXJxtXoAb7CfGk="; 34 + }) 35 + ]; 28 36 29 37 nativeBuildInputs = [ 30 38 meson