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 search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
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.
Return a new download.
Return a new build.
Pass PROC a database record corresponding to FILE. If FILE doesn't exist, create it and initialize it as a new database. Unless WAL-MODE? is set to #f, set journal_mode=WAL.
Registers this stuff in DB. PATH is the store item to register and REFERENCES is the list of store items PATH refers to; DERIVER is the '.drv' that produced PATH, HASH is the base16-encoded Nix sha256 hash of PATH (prefixed with "sha256:"), and NAR-SIZE is the size in bytes PATH after being converted to nar form. TIME is the registration time to be recorded in the database or #f, meaning "right now".
Every store item in REFERENCES must already be registered.
Reset the modification time on FILE and on all the files it contains, if it's a directory. Canonicalize file permissions unless PRESERVE-PERMISSIONS? is true.
Register all of ITEMS, a list of <store-info> records as returned by 'read-reference-graph', in DB. ITEMS must be in topological order (with leaves first.) REGISTRATION-TIME must be the registration time to be recorded in the database; #f means "now". Write a progress report to LOG-PORT. All of ITEMS must be protected from GC and locked during execution of this, typically by adding them as temp-roots.
Return the store database file name, taking PREFIX and STATE-DIRECTORY into account when provided.
If PATH exists in the 'ValidPaths' table, return its numerical identifier. Otherwise, return #f.
Check if a store item with sha256 hash HASH already exists. If so, replace PATH with a hardlink to the already-existing one. If not, register PATH so that future duplicates can hardlink to it. PATH is assumed to be under STORE.
Like 'copy-file', but additionally deduplicate TARGET in STORE.