Skip to content

Commit

Permalink
Change nim's nimble files to make it installable
Browse files Browse the repository at this point in the history
- needs nim-lang#20168 to make the stuff working

I went for this minimal solution because it seems like `compiler.nimble` and
`nimsuggest.nimble` are not in use
  • Loading branch information
yyoncho committed Aug 8, 2022
1 parent 3bd935f commit 0bbc21e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 17 deletions.
9 changes: 0 additions & 9 deletions compiler.nimble

This file was deleted.

14 changes: 14 additions & 0 deletions nim.nimble
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version = system.NimVersion
author = "Andreas Rumpf"
description = "Compiler package providing the compiler sources as a library."
license = "MIT"

bin = @["compiler/nim", "nimsuggest/nimsuggest"]
skipFiles = @["azure-pipelines.yml" , "build_all.bat" , "build_all.sh" , "build_nimble.bat" , "build_nimble.sh" , "changelog.md" , "koch.nim.cfg" , "nimblemeta.json" , "readme.md" , "security.md" ]
skipDirs = @["build" , "changelogs" , "ci" , "csources_v1" , "drnim" , "nimdoc", "testament"]

before install:
when defined(windows):
exec "./build_all.bat"
else:
exec "./build_all.sh"
8 changes: 0 additions & 8 deletions nimsuggest/nimsuggest.nimble

This file was deleted.

0 comments on commit 0bbc21e

Please sign in to comment.