lol

vala-language-server: Fix build with GLib 2.74

authored by

Bobby Rong and committed by
Jan Tojnar
336d270b 375445ae

+12 -4
+12 -4
pkgs/development/tools/vala-language-server/default.nix
··· 1 - { lib, stdenv 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 4 + , fetchpatch 3 5 , nix-update-script 4 6 , meson 5 7 , ninja ··· 24 26 sha256 = "sha256-gntGnz8uqGz2EGwWWyty/N1ImaUKAPtXVZcjgp73SQM="; 25 27 }; 26 28 29 + patches = [ 30 + # Fix regex for links in comments 31 + # https://github.com/vala-lang/vala-language-server/pull/268 32 + (fetchpatch { 33 + url = "https://github.com/vala-lang/vala-language-server/commit/b6193265d68b90755d57938c2ba1895841cf4b36.patch"; 34 + sha256 = "sha256-nWG+xQAPDVBXamuKQymvn/FBHEP7Ta9p/vhYjxxBGzI="; 35 + }) 36 + ]; 37 + 27 38 passthru = { 28 39 updateScript = nix-update-script { 29 40 attrPath = pname; ··· 52 63 homepage = "https://github.com/vala-lang/vala-language-server"; 53 64 license = licenses.lgpl21Plus; 54 65 maintainers = with maintainers; [ andreasfelix ]; 55 - # Likely broken by GLib 2.74 switch to PCRE 2. 56 - # https://github.com/vala-lang/vala-language-server/issues/263 57 - broken = true; 58 66 platforms = platforms.linux; 59 67 }; 60 68 }