diff --git a/README.md b/README.md index 0f9a05a..af647cd 100644 --- a/README.md +++ b/README.md @@ -13,16 +13,10 @@ Perhaps one day this will include more representations of data, but for now, thi This is probably bad code, but it was an excuse to write some Nim. -## Dependencies - -``` -nimble install cligen -``` - ## Compile ``` -nim c binnim.nim +nimble install ``` ## Usage diff --git a/binnim.nimble b/binnim.nimble new file mode 100644 index 0000000..14b59d6 --- /dev/null +++ b/binnim.nimble @@ -0,0 +1,14 @@ +# Package + +version = "0.1.0" +author = "John Hammond" +description = "Read in files to display in hex format for shellcode" +license = "MIT" +srcDir = "src" +bin = @["binnim"] + + +# Dependencies + +requires "nim >= 1.6.14" +requires "cligen >= 1.6.6" diff --git a/binnim.nim b/src/binnim.nim similarity index 100% rename from binnim.nim rename to src/binnim.nim