Unverified Commit 5d723f6a authored by Martin Weinelt's avatar Martin Weinelt
Browse files

ansible-language-server: init at 1.0.2-next.0

parent 929771b9
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{ lib
, buildNpmPackage
, fetchFromGitHub
}:

buildNpmPackage rec {
  pname = "ansible-language-server";
  version = "1.0.2-next.0";

  src = fetchFromGitHub {
    owner = "ansible";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-E4xWwqXl5n/eChJ8JM32K2gTYE/F8Y76J3Sll++48Uo=";
  };

  npmDepsHash = "sha256-8FP6hF85w1Zbhiwi2V350ZWFAykAfvsXRGL8bvGk1XE=";
  npmBuildScript = "compile";

  # We remove the prepare and prepack scripts because they run the
  # build script, and therefore are redundant.
  #
  # Additionally, the prepack script runs npm ci in addition to the
  # build script. Directly before npm pack is run, we make npm unaware
  # of the dependency cache, causing the npm ci invocation to fail,
  # wiping out node_modules, which causes a mysterious error stating that tsc isn't installed.
  postPatch = ''
    sed -i '/"prepare"/d' package.json
    sed -i '/"prepack"/d' package.json
  '';

  passthru.updateScript = {
    attrPath = pname;
  };

  meta = with lib; {
    changelog = "https://github.com/ansible/ansible-language-server/releases/tag/v${version}";
    description = "Ansible Language Server";
    homepage = "https://github.com/ansible/ansible-language-server";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -16463,6 +16463,8 @@ with pkgs;
  ansible-doctor = with python3.pkgs; toPythonApplication ansible-doctor;
  ansible-language-server = callPackage ../development/tools/ansible-language-server { };
  ansible-later = with python3.pkgs; toPythonApplication ansible-later;
  ansible-lint = with python3.pkgs; toPythonApplication ansible-lint;