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.
Coalesce the elements of SOURCES, a list of <upstream-source>, that correspond to the same version.
Return a predicate that returns true when passed a package whose source is an <origin> with the URL-FETCH method, and one of its URLs passes MATCHING-URL?.
Return a predicate that returns true when passed an <upstream-input> record of the given TYPE (a symbol such as 'propagated).
Return a variant of SOURCE that uses the same archive type as PACKAGE's source (gz, xz, zst, etc.). Return SOURCE if this is not applicable.
Download the tarball at URL to the store; check its OpenPGP signature at SIGNATURE-URL, unless SIGNATURE-URL is false. On success, return the tarball file name; return #f on failure (network failure or authentication failure).
KEY-DOWNLOAD specifies a download policy for missing OpenPGP keys; allowed values: 'auto' (default), 'always', 'interactive' and 'never'; KEY-SERVER specifies the OpenPGP key server where the key should be looked up.
Modify the source file that defines PACKAGE to refer to SOURCE, an <upstream-source> whose tarball has SHA256 HASH (a bytevector). Return the new version string if an update was made, and #f otherwise.
Return an updater among UPDATERS that matches PACKAGE, or #f if none of them matches.
Return the subset of inputs of SOURCE that have the given TYPE.
Return the available types of archives for RELEASE---a list of strings such as "gz" or "xz".
Return the new version, the file name of the new version tarball, and input changes for PACKAGE; return #f (three values) when PACKAGE is up-to-date; raise an error when the updater could not determine available releases. KEY-DOWNLOAD specifies a download policy for missing OpenPGP keys; allowed values: 'always', 'auto' (default), 'never', and 'interactive'.
When VERSION is specified, update PACKAGE to that version, even if that is a downgrade. When PARTIAL-VERSION? is true, treat VERSION as having been only partially specified, in which case the package will be updated to the newest compatible version if there are no exact match for VERSION. For example, providing "46" as the version may update the package to version "46.6.4".
Return an <upstream-source> object to update PACKAGE, a <package> object, or #f if none of UPDATERS matches PACKAGE. When several updaters match PACKAGE, try them until one of them returns an upstream source. It is the caller's responsibility to ensure that the returned source is newer than the current one.
Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64) using 32-bit data types?