From c3614c317d14c676e6e7a809d1a2167783863ad8 Mon Sep 17 00:00:00 2001 From: bung87 Date: Tue, 12 Sep 2023 03:36:43 +0800 Subject: [PATCH] add license and remove nimble file --- nimlsp/LICENSE | 21 +++++++++++++++++++++ nimlsp/nimlsp.nimble | 25 ------------------------- 2 files changed, 21 insertions(+), 25 deletions(-) create mode 100644 nimlsp/LICENSE delete mode 100644 nimlsp/nimlsp.nimble diff --git a/nimlsp/LICENSE b/nimlsp/LICENSE new file mode 100644 index 00000000000..4ba6bd42bff --- /dev/null +++ b/nimlsp/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 PMunch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/nimlsp/nimlsp.nimble b/nimlsp/nimlsp.nimble deleted file mode 100644 index 77414e31cd2..00000000000 --- a/nimlsp/nimlsp.nimble +++ /dev/null @@ -1,25 +0,0 @@ -# Package - -version = "0.4.4" -author = "PMunch" -description = "Nim Language Server Protocol - nimlsp implements the Language Server Protocol" -license = "MIT" -srcDir = "src" -bin = @["nimlsp", "nimlsp_debug"] - -# Dependencies - -# nimble test does not work for me out of the box -#task test, "Runs the test suite": - #exec "nim c -r tests/test_messages.nim" -# exec "nim c -d:debugLogging -d:jsonSchemaDebug -r tests/test_messages2.nim" - -task debug, "Builds the language server": - exec "nim c --threads:on -d:nimcore -d:nimsuggest -d:debugCommunication -d:debugLogging -o:nimlsp src/nimlsp" - -before test: - exec "nimble build" - -task findNim, "Tries to find the current Nim installation": - echo NimVersion - echo currentSourcePath