fish-lsp: 1.0.8-4 -> 1.0.9-1 (#409806)

This commit is contained in:
Aleksana
2025-06-06 13:11:40 +08:00
committed by GitHub
+11 -8
View File
@@ -13,20 +13,20 @@
yarnBuildHook,
yarnConfigHook,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "fish-lsp";
version = "1.0.8-4";
version = "1.0.9-1";
src = fetchFromGitHub {
owner = "ndonfris";
repo = "fish-lsp";
tag = "v${version}";
hash = "sha256-rtogxbcnmOEFT1v7aK+pzt9Z4B2O4rFwH3pTNVLTxiA=";
tag = "v${finalAttrs.version}";
hash = "sha256-NyEhvW5NMqvESdbauxur7xWAzQiQdTVklGMYhckNAnw=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = src + "/yarn.lock";
hash = "sha256-83QhVDG/zyMbHJbV48m84eimXejLKdeVrdk1uZjI8bk=";
yarnLock = finalAttrs.src + "/yarn.lock";
hash = "sha256-xB4kWpPQbA1OkXNr5sozPIP96dLJhwoDUpesE6DORzg=";
};
nativeBuildInputs = [
@@ -82,7 +82,10 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/ndonfris/fish-lsp";
license = lib.licenses.mit;
mainProgram = "fish-lsp";
maintainers = with lib.maintainers; [ petertriho ];
maintainers = with lib.maintainers; [
llakala
petertriho
];
platforms = lib.platforms.unix;
};
}
})