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

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.


flatten (lst)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return a list that recursively concatenates all sub-lists of LST.

non-empty-string-or-false (expr)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
default-git-error (home-page #:optional location)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return a procedure to be passed to a `git-error' `catch' for HOME-PAGE at LOCATION.

peek-body (proc)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
guix-hash-url (filename)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return the hash of FILENAME in nix-base32 format.

chunk-lines (lines #:optional pred)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return a list of chunks, each of which is a list of lines. The chunks are separated by PRED.

git-origin (url commit hash #:key recursive?)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Simple helper to generate a Git origin s-expression.

read-lines (#:optional port)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Read lines from PORT and return them as a list.

license->symbol (license)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Convert LICENSE object to a prefixed symbol representing the variable the object is bound to in the (guix licenses) module, such as 'license:gpl3+, or #f if there is no such known license.

false-if-networking-error
Channel: guix
Location: guix/import/utils.scm (guix import utils)
download-git-repository (url ref #:key recursive?)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Fetch the given REF from the Git repository at URL. Return three values : the commit hash, the downloaded directory and its content hash.

git-repository-url? (url)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Guess if the URL looks like a Git repository.

recursive-import (package-name #:key repo->guix-package guix-name version . rest)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return a list of package expressions for PACKAGE-NAME and all its dependencies, sorted in topological order. For each package, call (REPO->GUIX-PACKAGE NAME #:version V), which should return a package expression and a list of dependencies; call (GUIX-NAME PACKAGE-NAME) to obtain the Guix package name corresponding to the upstream name.

maybe-propagated-inputs (package-names #:optional output)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Same as MAYBE-INPUTS, but for propagated inputs.

maybe-inputs (package-names #:optional output #:key type)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Given a list of PACKAGE-NAMES, tries to generate the 'inputs' field of a package definition. TYPE can be used to specify the type of the inputs; either the 'native or 'propagated symbols are accepted. Left unspecified, the snippet generated is for regular inputs.

alist->package (meta #:optional known-inputs)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return a package value generated from the alist META. If the list of strings KNOWN-INPUTS is provided, do not treat the mentioned inputs as specifications to look up and replace them with plain symbols instead.

beautify-synopsis (synopsis)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Improve the package SYNOPSIS.

peekable-lambda
Channel: guix
Location: guix/import/utils.scm (guix import utils)
maybe-native-inputs (package-names #:optional output)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Same as MAYBE-INPUTS, but for native inputs.

git->origin (url proc #:key ref eager? . rest)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Return a generated `origin' block of a package depending on the Git version control system, and the directory in the store where the package has been downloaded, in case further processing is necessary.

Unless overwritten with REF, the ref (as defined by the (guix git) module) is calculated from the evaluation of PROC with trailing arguments. If EAGER? is #t, the same computation (PROC applied to the trailing arguments) is used as value of the `commit' field of the generated `git-reference' S-expression. Otherwise, PROC must be a procedure with a 'body property, which is used as the `commit' field S-expression.

guix-name
Channel: guix
Location: guix/import/utils.scm (guix import utils)
package-names->package-inputs (names #:optional output)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Given a list of PACKAGE-NAMES or (PACKAGE-NAME VERSION) pairs, and an optional OUTPUT, tries to generate a quoted list of inputs, as suitable to use in an 'inputs' field of a package definition.

tarball-url->git-repository-url (url)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Given URL, the URL of a source code tarball, return the URL of the corresponding Git repository or #f if it could not be guessed.

find-version (versions #:optional version partial?)
Channel: guix
Location: guix/import/utils.scm (guix import utils)
Documentation:

Find VERSION amongst VERSIONS. When VERSION is not provided, return the latest version. When PARTIAL? is #t, VERSION is treated as a version prefix; e.g. finding version "0.1" may return "0.1.8" if it is the newest "0.1" prefixed version found in VERSIONS. Return #f when VERSION could not be found.

Total public symbols: 86650