Zig NEWS

Discussion on: Zig Package Aggregator

Collapse
 
javier profile image
Javier • Edited

How do I add non-git packages (eg zigqlite)? Hopefully fossil support will be merged to zigmod, but even without it, I have automatic tar and zip links.

Collapse
 
xq profile image
Felix "xq" Queißner

That's a pretty good question! Maybe i should replace the git property with a sources property where one can add several sources:

"sources": {
  { "format": "git", "https://…/foo.git" },
  { "format": "tar", "https://…/foo.tar.gz" },
  { "format": "zip", "https://…/foo.zip" },
},
Enter fullscreen mode Exit fullscreen mode
Collapse
 
javier profile image
Javier

but how? all of the sources mentioned in the article are git based. where can I submit links to my packages?

Thread Thread
 
xq profile image
Felix "xq" Queißner

Change the entries in github.com/ziglibs/repository, they are not using a git source. Well, right now they are, but submit a change that allows that :)