www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Cannot build project due to Derelict package

reply Andrey <saasecondbox yandex.ru> writes:
Hello,
I try to build my project using command "dub build" but I can\t 
because there is an error:
 Fetching derelict-util 3.0.0-beta.2 (getting selected 
 version)...
 SSL connect error on handle 1F19AC0
And this happens every time... As I understand dub can't find package. In dub.json I have this:
 "dependencies": {
     "derelict-glfw3": "~master"
 }
I manually downloaded derelict-glfw3 and derelict-util from GitHub (master branch). What should I do to dub knew about these local packages?
Nov 26 2018
parent reply Alex <sascha.orlov gmail.com> writes:
On Monday, 26 November 2018 at 11:57:40 UTC, Andrey wrote:
 Hello,
 I try to build my project using command "dub build" but I can\t 
 because there is an error:
 Fetching derelict-util 3.0.0-beta.2 (getting selected 
 version)...
 SSL connect error on handle 1F19AC0
And this happens every time... As I understand dub can't find package. In dub.json I have this:
 "dependencies": {
     "derelict-glfw3": "~master"
 }
I manually downloaded derelict-glfw3 and derelict-util from GitHub (master branch). What should I do to dub knew about these local packages?
There are some ways to let dub know about them: https://forum.dlang.org/thread/fgpmytpzoifpdrhzkeml forum.dlang.org
Nov 26 2018
parent Andrey <saasecondbox yandex.ru> writes:
On Monday, 26 November 2018 at 12:11:03 UTC, Alex wrote:
 On Monday, 26 November 2018 at 11:57:40 UTC, Andrey wrote:
 Hello,
 I try to build my project using command "dub build" but I 
 can\t because there is an error:
 Fetching derelict-util 3.0.0-beta.2 (getting selected 
 version)...
 SSL connect error on handle 1F19AC0
And this happens every time... As I understand dub can't find package. In dub.json I have this:
 "dependencies": {
     "derelict-glfw3": "~master"
 }
I manually downloaded derelict-glfw3 and derelict-util from GitHub (master branch). What should I do to dub knew about these local packages?
There are some ways to let dub know about them: https://forum.dlang.org/thread/fgpmytpzoifpdrhzkeml forum.dlang.org
Thanks!
Nov 26 2018