google / skicka

Command-line utility for working with Google Drive. Join the mailing list at https://groups.google.com/forum/#!forum/skicka-users.
Apache License 2.0
1.3k stars 118 forks source link

go get github.com/google/skicka fails #96

Closed paulhybryant closed 8 years ago

paulhybryant commented 8 years ago

The import code.google.com/p/go.crypto/pbkdf2 doesn't seem to be valid any more in skicka.go

ximellon commented 8 years ago

Use this new package, crypto, in sub-repositories to replace the old one.

You should be able to get it with command:

go get crypto

And replace the package name in import statements with "golang.org/x/crypto/pbkdf2".

P.S. Tough gcfg is still available from Google Code (only warning appears), they also move to a new place, where you can find out from their Google Code page. And you can use "code.google.com/p/gcfg" to replace the old one. Cheers!

mmp commented 8 years ago

Fixed--thanks!