Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Return a new download.
Return a procedure that can be passed to 'build-event-output-port'. That procedure computes the new build status upon each event and calls ON-CHANGE:
(ON-CHANGE event status new-status)
ON-CHANGE can display the build status, build events, etc.
Print information about EVENT and STATUS to PORT. When COLORIZE? is true, produce colorful output. When PRINT-LOG? is true, display the build log in addition to build events. When PRINT-URLS? is true, display the URL of substitutes being downloaded.
Given EVENT, a tuple like (build-started "/gnu/store/...-foo.drv" ...), compute a new status based on STATUS.
Return an output port for use as 'current-build-output-port' that calls PROC with its current state value, initialized with SEED, on every build event. Build events passed to PROC are tuples corresponding to the "build traces" produced by the daemon:
(build-started "/gnu/store/...-foo.drv" ...) (substituter-started "/gnu/store/...-foo" ...)
and so on.
The second return value is a thunk to retrieve the current state.