_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/

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.


list->setq (lst)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set with the elements taken from LST. Elements of the set will be compared with 'eq?'.

set?
Channel: guix
Location: guix/sets.scm (guix sets)
set-union (set1 set2)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return the union of SET1 and SET2. Warning: this is linear in the number of elements of the smallest.

setq args
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set containing the ARGS, compared as per 'eq?'.

set-contains?
Channel: guix
Location: guix/sets.scm (guix sets)
set-insert (value set)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Insert VALUE into SET.

list->set (lst)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set with the elements taken from LST. Elements of the set will be compared with 'equal?'.

set->list (set)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return the list of elements of SET.

retrieve-files (local files remote #:key recursive? log-port)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Retrieve FILES from REMOTE and import them using the 'import-paths' RPC on LOCAL. When RECURSIVE? is true, retrieve the closure of FILES.

remote-daemon-channel (session #:optional socket-name)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Return an input/output port (an SSH channel) to the daemon at SESSION.

send-files (local files remote #:key recursive? log-port)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Send the subset of FILES from LOCAL (a local store) that's missing to REMOTE, a remote store. When RECURSIVE? is true, send the closure of FILES. Return the list of store items actually sent.

remote-inferior (session #:optional become-command)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Return a remote inferior for the given SESSION. If BECOME-COMMAND is given, use that to invoke the remote Guile REPL.

authenticate-server* (session key)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:
Make sure the server for SESSION has the given KEY, where KEY is a string such as "ssh-ed25519 AAAAC3Nz… root@example.org". Raise an exception if the actual key does not match.
open-ssh-session (host #:key user port identity host-key compression timeout connection-timeout strict-host-key-check?)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:
Open an SSH session for HOST and return it. IDENTITY specifies the file name of a private key to use for authenticating with the host. When USER, PORT, or IDENTITY are #f, use default values or whatever '~/.ssh/config' specifies; otherwise use them. When HOST-KEY is true, it must be a string like "ssh-ed25519 AAAAC3Nz… root@example.org"; the server is authenticated and an error is raised if its host key is different from HOST-KEY. Error out if connection establishment takes more than CONNECTION-TIMEOUT seconds. Install TIMEOUT as the maximum time in seconds after which a read or write operation on a channel of the returned session is considered as failing. If STRICT-HOST-KEY-CHECK? is #f, strict host key checking is turned off for the new session. Throw an error on failure.
remote-system (session)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Return the system type as expected by Nix, usually ARCHITECTURE-KERNEL, of the machine on the other end of SESSION.

connect-to-remote-daemon (session #:optional socket-name)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Connect to the remote build daemon listening on SOCKET-NAME over SESSION, an SSH session. Return a <store-connection> object.

remote-store-host (remote)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Return the name of the host REMOTE is connected to, where REMOTE is a remote store as returned by 'connect-to-remote-daemon'.

remote-authorize-signing-key (key session #:optional become-command)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Send KEY, a canonical sexp containing a public key, over SESSION and add it to the system ACL file if it has not yet been authorized.

report-guile-error (host)
Channel: guix
Location: guix/ssh.scm (guix ssh)
retrieve-files* (files remote #:key recursive? log-port import)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Pass IMPORT an input port from which to read the sequence of FILES coming from REMOTE. When RECURSIVE? is true, retrieve the closure of FILES.

build-phase
Channel: guix
Location: guix/status.scm (guix status)
download-transferred
Channel: guix
Location: guix/status.scm (guix status)
print-build-event (event old-status status #:optional port #:key colorize? print-urls? print-log?)
Channel: guix
Location: guix/status.scm (guix status)
Documentation:

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.

build-status-downloading
Channel: guix
Location: guix/status.scm (guix status)
Total public symbols: 88176