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.
Provides Python 3 bindings for libxapp, including a toolkit to build and persist XApp settings windows using GSettings.
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.
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.
Analyzer for Clojure code, written on top of tools.analyzer, providing additional JVM-specific passes.
The clojure.tools.reader library offers all functionality provided by the Clojure Core reader and more. It adds metadata such as column and line numbers not only to lists, but also to symbols, vectors and maps.
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.
data.json is a Clojure library for reading and writing JSON data. data.xml is compliant with the JSON spec and has no external dependencies
This package provides a minimalist, event-driven, high-performance Clojure HTTP client and server library with WebSocket and asynchronous support.
This library contains the most commonly used monads as well as macros for defining and using monads and useful monadic functions.
data.csv is a Clojure library for reading and writing CSV data. data.csv follows the RFC4180 specification but is more relaxed.
test.check is a Clojure property-based testing tool inspired by QuickCheck. The core idea of test.check is that instead of enumerating expected input and output for unit tests, you write properties about your function that should hold true for all inputs. This lets you write concise, powerful tests.
Logging macros which delegate to a specific logging implementation, selected at runtime when the clojure.tools.logging namespace is first loaded.
To access git dependencies (for example, via tools.deps), one must download git directories and working trees as indicated by git SHAs. This library provides this functionality and also keeps a cache of git directories and working trees that can be reused.
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.
Generic versions of commonly used functions, implemented as multimethods that can be implemented for any data type.
This package provides a functional API for transitive dependency graph expansion and the creation of classpaths.
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.
Tools for writing macros.
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.
Analyzer for Clojure code, written in Clojure, which produces an abstract syntax tree in the EDN ( Extensible Data Notation) format.
data.xml is a Clojure library for reading and writing XML data. data.xml has the following features:
Parses XML documents into Clojure data structures Emits XML from Clojure data structures No additional dependencies if using JDK >= 1.6 Uses StAX internally lazy - should allow parsing and emitting of large XML documents
An optimized pattern matching library for Clojure. It supports Clojure 1.5.1 and later as well as ClojureScript.