94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
27 lines
785 B
Nix
27 lines
785 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "docker-compose-language-service";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "compose-language-service";
|
|
rev = "v${version}";
|
|
hash = "sha256-faQvUHzqtCipceGnamVQIlAWCDpo7oX01/zGz9RLjMY=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-gWaZMsI1HVIXKZInfgzfH8syzOwU2C6kcKvB2M6KLX4=";
|
|
|
|
meta = with lib; {
|
|
description = "Language service for Docker Compose documents";
|
|
homepage = "https://github.com/microsoft/compose-language-service";
|
|
changelog = "https://github.com/microsoft/compose-language-service/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
mainProgram = "docker-compose-langserver";
|
|
};
|
|
}
|