Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?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.
The threads implemented in CHICKEN are so called "green" threads, based on first-class continuations. Native threads that map directly to the threads provided by the operating system are not supported. The advantage of this is that threads are very lightweight and somewhat larger degree of determinism. The disadvantage is that execution of Scheme code on multiple processor cores is not available.
CHICKEN is a compiler for the Scheme programming language. CHICKEN produces portable and efficient C, supports almost all of the R5RS Scheme language standard, and includes many enhancements and extensions.
Character sets can be created, extended, tested for the membership of a characters and be compared to other character sets
This library implements the Wu-Manber algorithm for approximate string searching with errors, popularized by the agrep Unix command and the glimpse file indexing tool.
This ``integer set'' CHICKEN Scheme library implements bit vectors. Bit-vectors provide an abstract interface to bitwise operations typically done with integers.
This package provides the SRFI-13 string library for Chicken scheme.
The crypto-tools egg implements useful cryptographic primitives. More specifically, provided are:
binary blobs
marshallers to and from hex strings
blob xor
blob padding using either PKCS#5 or ISO7816-4
Block cipher modes of operation
CBC with or without incorporated encrypted IV in the ciphertext
CTR with or without incorporated IV in the ciphertext
This CHICKEN Scheme library provides a facility for creating and using variant records, as described in the book Essentials of Programming Languages by Friedman, Wand, and Haynes.
Ungoogled-Chromium is the Chromium web browser, with some functionality disabled in order to protect the users privacy. This package also includes the chromedriver command, which can be useful for automated web testing.
Ungoogled-Chromium is the Chromium web browser, with some functionality disabled in order to protect the users privacy. This package also includes the chromedriver command, which can be useful for automated web testing.
Cuirass is a continuous integration tool using GNU Guix. It is intended as a replacement for Hydra.
Laminar is a lightweight and modular continuous integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts.
Laminar encourages the use of existing tools such as bash and cron instead of reinventing them.
Forgejo Runner is a daemon that connects to a Forgejo instance and runs jobs for continuous integration.
The libxapp package contains the components which are common to multiple GTK desktop environments (Cinnamon, MATE and Xfce) and required to implement cross-DE solutions.
Nemo is the file manager for the Cinnamon desktop environment.
The cinnamon-desktop package contains the libcinnamon-desktop library, as well as some desktop-wide documents.
Provides Python 3 bindings for libxapp, including a toolkit to build and persist XApp settings windows using GSettings.
Clifm is a shell-like, text-based terminal file manager that sits on the command line.
It is built with command line principles in mind: instead of navigating through a big menu of files, it lets you type, exactly as you do in your regular shell, but easier and faster.
Tools for writing macros.
Logging macros which delegate to a specific logging implementation, selected at runtime when the clojure.tools.logging namespace is first loaded.
Caching library for Clojure implementing various cache strategies such as First-in-first-out, Least-recently-used, Least-used, Time-to-live, Naive cache and Naive cache backed with soft references.
Instaparse aims to be the simplest way to build parsers in Clojure.
Turns standard EBNF or ABNF notation for context-free grammars into an executable parser that takes a string as an input and produces a parse tree for that string.
No Grammar Left Behind: Works for any context-free grammar, including left-recursive, right-recursive, and ambiguous grammars.
Extends the power of context-free grammars with PEG-like syntax for lookahead and negative lookahead.
Supports both of Clojure's most popular tree formats (hiccup and enlive) as output targets
Detailed reporting of parse errors.
Optionally produces lazy sequence of all parses (especially useful for diagnosing and debugging ambiguous grammars).
``Total parsing'' mode where leftover string is embedded in the parse tree.
Optional combinator library for building grammars programmatically.
Performant.
A priority map is very similar to a sorted map, but whereas a sorted map produces a sequence of the entries sorted by key, a priority map produces the entries sorted by value. In addition to supporting all the functions a sorted map supports, a priority map can also be thought of as a queue of [item priority] pairs. To support usage as a versatile priority queue, priority maps also support conj/peek/pop operations.
A manipulable, pluggable, memoization framework for Clojure implementing some common memoization caching strategies, such as First-in-first-out, Least-recently-used, Least-used and Time-to-live.