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 { lib 2 , fetchFromGitHub 3 , meson 4 , python3Packages 5 , ninja ··· 25 sha256 = "0b2slm7kjq6q8c7v4m7aqc8m1ynjxn3bl7445srpv1xc0dilq403"; 26 }; 27 28 29 nativeBuildInputs = [ 30 meson
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchpatch 4 , meson 5 , python3Packages 6 , ninja ··· 26 sha256 = "0b2slm7kjq6q8c7v4m7aqc8m1ynjxn3bl7445srpv1xc0dilq403"; 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 + ]; 36 37 nativeBuildInputs = [ 38 meson