diff options
| -rw-r--r-- | nimble_hook_test.nim | 1 | ||||
| -rw-r--r-- | nimble_hook_test.nimble | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/nimble_hook_test.nim b/nimble_hook_test.nim new file mode 100644 index 0000000..af41483 --- /dev/null +++ b/nimble_hook_test.nim @@ -0,0 +1 @@ +echo("hello") diff --git a/nimble_hook_test.nimble b/nimble_hook_test.nimble new file mode 100644 index 0000000..ea10110 --- /dev/null +++ b/nimble_hook_test.nimble @@ -0,0 +1,13 @@ +# Package + +version = "0.1.0" +author = "Oskari Timperi" +description = "testing out nimble hooks" +license = "MIT" + +# Dependencies + +requires "nim >= 0.17.2" + +after install: + echo("AFTER INSTALL") |
