summary refs log tree commit diff stats
path: root/nim.nimble
diff options
context:
space:
mode:
authorIvan Yonchovski <yyoncho@users.noreply.github.com>2023-06-18 17:06:14 +0300
committerGitHub <noreply@github.com>2023-06-18 16:06:14 +0200
commit2bb7277a616b2ddbcc10a0e2eb1940f6b0b401cb (patch)
treee1a73a53955ef087dc706bdf0d473048446bdb61 /nim.nimble
parent6d2163724550ed3a115d22e00f9d40150534a8b9 (diff)
downloadNim-2bb7277a616b2ddbcc10a0e2eb1940f6b0b401cb.tar.gz
Create compiler and nimsuggest packages (#22118)
I have tested it locally with the following in my local packages_official.json

```
  {
    "name": "compiler",
    "url": "https://github.com/yyoncho/Nim.git/?subdir=compiler",
    "method": "git",
    "tags": [
      "library",
      "compiler"
    ],
    "description": "Package providing the Nim compiler binaries plus all its source files that can be used as a library",
    "license": "MIT",
    "web": "https://github.com/nim-lang/Nim"
  },
  {
    "name": "nimsuggest",
    "url": "https://github.com/yyoncho/Nim.git/?nimsuggest=compiler",
    "method": "git",
    "tags": [
      "library",
      "compiler"
    ],
    "description": "Package providing the Nim compiler binaries plus all its source files that can be used as a library",
    "license": "MIT",
    "web": "https://github.com/nim-lang/Nim"
  },
```

Then `nimble install compiler`, `nimble install nimsuggest` work as expected.
Diffstat (limited to 'nim.nimble')
-rw-r--r--nim.nimble2
1 files changed, 1 insertions, 1 deletions
diff --git a/nim.nimble b/nim.nimble
index b0253f66d..bf195b0fa 100644
--- a/nim.nimble
+++ b/nim.nimble
@@ -1,7 +1,7 @@
 include "lib/system/compilation.nim"
 version = $NimMajor & "." & $NimMinor & "." & $NimPatch
 author = "Andreas Rumpf"
-description = "Compiler package providing the compiler sources as a library."
+description = "Nim package providing the compiler binary"
 license = "MIT"
 
 bin = @["compiler/nim", "nimsuggest/nimsuggest"]