gokr / spry

A Smalltalk and Rebol inspired language implemented as an AST interpreter in Nim
Other
389 stars 23 forks source link

Nothing named `snappy` #8

Closed catb0t closed 7 years ago

catb0t commented 7 years ago

trying to build the ide, trying to run tests/run.sh and trying to run nimble c tests/all all complain like

modules/sprycompress.nim(1, 8) Error: cannot open 'snappy'
  import snappy
         ^

nimble install snappy gives an error that the package is not found. where do i find the snappy package to make Spry build?

note this is also why travis-ci builds fail

gokr commented 7 years ago

I think if you first try nimble build in spry, it will install dependencies of which nimsnappy is listed. Otherwise nimble search snappy should find the nimsnappy package - which you install with nimble install nimsnappy. I switched to snappy deliberately because it was hard to get nimlz4 working :)

catb0t commented 7 years ago

Okay, that's solved that specific thing. Seems like you should add nimsnappy to the list of dependencies or something though :)