fish-lsp: 1.0.8-1 -> 1.0.8-4

Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
This commit is contained in:
Eman Resu
2025-03-04 16:02:26 -05:00
co-authored by Pol Dellaiera
parent 22554c417e
commit 5c22fc7391
+8 -3
View File
@@ -15,18 +15,18 @@
}:
stdenv.mkDerivation rec {
pname = "fish-lsp";
version = "1.0.8-1";
version = "1.0.8-4";
src = fetchFromGitHub {
owner = "ndonfris";
repo = "fish-lsp";
tag = "v${version}";
hash = "sha256-u125EZXQEouVbmJuoW3KNDNqLB5cS/TzblXraClcw6Q=";
hash = "sha256-rtogxbcnmOEFT1v7aK+pzt9Z4B2O4rFwH3pTNVLTxiA=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = src + "/yarn.lock";
hash = "sha256-hHw7DbeqaCapqx4dK5Y3sPut94ist9JOU8g9dd6gBdo=";
hash = "sha256-83QhVDG/zyMbHJbV48m84eimXejLKdeVrdk1uZjI8bk=";
};
nativeBuildInputs = [
@@ -45,6 +45,11 @@ stdenv.mkDerivation rec {
yarn --offline compile
'';
# We do it in postPatch, since it needs to be fixed before buildPhase
postPatch = ''
patchShebangs bin/fish-lsp
'';
installPhase = ''
runHook preInstall