lol

cinnamon.xreader: Backport meson 1.2 fix

Because meson 1.2 is already in staging.

+10
+10
pkgs/desktops/cinnamon/xreader/default.nix
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 , glib 5 , gobject-introspection 6 , intltool ··· 34 rev = version; 35 sha256 = "sha256-2zqlfoN4L+V237cQ3PVh49YaZfNKGiLqh2JIiGJE340="; 36 }; 37 38 nativeBuildInputs = [ 39 shared-mime-info
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 + , fetchpatch 5 , glib 6 , gobject-introspection 7 , intltool ··· 35 rev = version; 36 sha256 = "sha256-2zqlfoN4L+V237cQ3PVh49YaZfNKGiLqh2JIiGJE340="; 37 }; 38 + 39 + patches = [ 40 + # Fix build with meson 1.2, can be dropped on next bump 41 + # https://github.com/linuxmint/xreader/issues/612 42 + (fetchpatch { 43 + url = "https://github.com/linuxmint/xreader/commit/06b18a884c8cf3257ea1f053a82784da078999ed.patch"; 44 + sha256 = "sha256-+LXEW3OkfhkIcbxtvfQYjdaC18O8imOx22t91ad/XZw="; 45 + }) 46 + ]; 47 48 nativeBuildInputs = [ 49 shared-mime-info