mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
33 lines
834 B
Nix
33 lines
834 B
Nix
{ lib, nimPackages, fetchFromGitHub, srcOnly, nim }:
|
|
|
|
nimPackages.buildNimPackage rec {
|
|
pname = "nimlsp";
|
|
version = "0.4.1";
|
|
nimBinOnly = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PMunch";
|
|
repo = "nimlsp";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LAtUGhYEcOwvZzexQ2y3/HPgOge2EsScCbujJ/hz5Ec=";
|
|
};
|
|
|
|
buildInputs = with nimPackages; [ jsonschema ];
|
|
|
|
nimFlags = [
|
|
"--threads:on"
|
|
"-d:explicitSourcePath=${srcOnly nimPackages.nim.passthru.nim}"
|
|
"-d:tempDir=/tmp"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|