vtsls: 0.2.8 -> 0.2.9 (#409143)

authored by

Pol Dellaiera and committed by
GitHub
efb042f5 4c9044c4

+6 -8
+6 -8
pkgs/by-name/vt/vtsls/package.nix
··· 4 4 fetchFromGitHub, 5 5 nodejs_22, 6 6 gitMinimal, 7 + gitSetupHook, 7 8 pnpm_8, 8 9 nix-update-script, 9 10 }: 10 11 11 12 stdenv.mkDerivation (finalAttrs: { 12 13 pname = "vtsls"; 13 - version = "0.2.8"; 14 + version = "0.2.9"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "yioneko"; 17 18 repo = "vtsls"; 18 - rev = "server-v${finalAttrs.version}"; 19 - hash = "sha256-Ng+aOBnxFRbMjoUy6+DvIk2yVpvJT+AMsbvDb+IlYpY="; 19 + tag = "server-v${finalAttrs.version}"; 20 + hash = "sha256-vlw84nigvQqRB9OQBxOmrR9CClU9M4dNgF/nrvGN+sk="; 20 21 fetchSubmodules = true; 21 22 }; 22 23 ··· 24 25 nodejs_22 25 26 # patches are applied with git during build 26 27 gitMinimal 28 + gitSetupHook 27 29 pnpm_8.configHook 28 30 ]; 29 31 ··· 38 40 src 39 41 version 40 42 ; 41 - hash = "sha256-xenPpKsIjEIyVeZDjwjLaBbpWLqWQDBaLLfyzxtrsTI="; 43 + hash = "sha256-SdqeTYRH60CyU522+nBo0uCDnzxDP48eWBAtGTL/pqg="; 42 44 }; 43 45 44 46 # Patches to get submodule sha from file instead of 'git submodule status' ··· 49 51 50 52 buildPhase = '' 51 53 runHook preBuild 52 - 53 - # During build vtsls needs a working git installation. 54 - git config --global user.name nixbld 55 - git config --global user.email nixbld@example.com 56 54 57 55 # during build this sha is used as a marker to skip applying patches and 58 56 # copying files, which doesn't matter in this case