nixpkgs/pkgs/development/tools/misc/nimlsp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
845 B
Nix
Raw Normal View History

2021-09-02 16:24:10 +00:00
{ lib, nimPackages, fetchFromGitHub, srcOnly, nim }:
2021-09-02 16:24:10 +00:00
nimPackages.buildNimPackage rec {
pname = "nimlsp";
2023-01-22 04:21:00 +00:00
version = "0.4.4";
2021-09-02 16:24:10 +00:00
nimBinOnly = true;
src = fetchFromGitHub {
owner = "PMunch";
repo = "nimlsp";
rev = "v${version}";
2023-01-22 04:21:00 +00:00
sha256 = "sha256-Z67iKlL+dnRbxdFt/n/fsUcb2wpZwzPpL/G29jfCaMY=";
};
2023-01-22 04:21:00 +00:00
buildInputs = with nimPackages; [ jsonschema asynctools ];
2021-09-02 16:24:10 +00:00
nimFlags = [
"--threads:on"
"-d:explicitSourcePath=${srcOnly nimPackages.nim.passthru.nim}"
"-d:tempDir=/tmp"
];
2021-09-02 16:24:10 +00:00
nimDefines = [ "nimcore" "nimsuggest" "debugCommunication" "debugLogging" ];
meta = with lib; {
description = "Language Server Protocol implementation for Nim";
homepage = "https://github.com/PMunch/nimlsp";
license = licenses.mit;
platforms = nim.meta.platforms;
maintainers = [ maintainers.marsam ];
};
}