vala-language-server: 0.48.5 -> 0.48.7

https://github.com/vala-lang/vala-language-server/compare/0.48.5...0.48.7
This commit is contained in:
Bobby Rong 2023-03-26 14:38:36 +08:00
parent 8f40f2f90b
commit 1c41583945
No known key found for this signature in database

View file

@ -1,7 +1,6 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, nix-update-script
, meson
, ninja
@ -17,24 +16,15 @@
stdenv.mkDerivation rec {
pname = "vala-language-server";
version = "0.48.5";
version = "0.48.7";
src = fetchFromGitHub {
owner = "vala-lang";
repo = pname;
rev = version;
sha256 = "sha256-gntGnz8uqGz2EGwWWyty/N1ImaUKAPtXVZcjgp73SQM=";
sha256 = "sha256-Vl5DjKBdpk03aPD+0xGoTwD9Slg1rREorqZGX5o10cY=";
};
patches = [
# Fix regex for links in comments
# https://github.com/vala-lang/vala-language-server/pull/268
(fetchpatch {
url = "https://github.com/vala-lang/vala-language-server/commit/b6193265d68b90755d57938c2ba1895841cf4b36.patch";
sha256 = "sha256-nWG+xQAPDVBXamuKQymvn/FBHEP7Ta9p/vhYjxxBGzI=";
})
];
passthru = {
updateScript = nix-update-script { };
};