diff options
| author | Oskari Timperi <oskari.timperi@iki.fi> | 2017-11-29 19:26:56 +0200 |
|---|---|---|
| committer | Oskari Timperi <oskari.timperi@iki.fi> | 2017-11-29 19:26:56 +0200 |
| commit | 06485c3e2ff49622833c5aaee5cf5ba5801c17f1 (patch) | |
| tree | 49b9906a26ea3c7264132db83a339128087a4460 | |
| parent | 67420b395437601daabbacf31c1f687324eba80f (diff) | |
| download | nimble-hook-test-06485c3e2ff49622833c5aaee5cf5ba5801c17f1.tar.gz nimble-hook-test-06485c3e2ff49622833c5aaee5cf5ba5801c17f1.zip | |
first hook
| -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") |
