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

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.


cl-flac 1.0.0-0.d094d33
Dependencies: flac@1.5.0
Propagated dependencies: cl-cffi@0.24.1-2.32c90d4 cl-documentation-utils@1.2.0-0.98630dd cl-trivial-features@1.0 cl-trivial-garbage@0.21-0.3474f64
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shirakumo.github.io/cl-flac
Licenses: Zlib
Build system: asdf/source
Synopsis: CFFI bindings to libflac for Common Lisp
Description:

This package provides CFFI bindings to the libflac audio library for Common Lisp.

sbcl-simple-neural-network 3.2
Dependencies: sbcl-cl-store@0.8.11-1.c787337 sbcl-lparallel@2.8.4-1.80fc295
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://codeberg.org/glv/simple-neural-network
Licenses: GPL 3+
Build system: asdf/sbcl
Synopsis: Simple neural network in Common Lisp
Description:

simple-neural-network is a Common Lisp library for creating, training and using basic neural networks. The networks created by this library are feedforward neural networks trained using backpropagation.

sbcl-cl-hooks 0.2.1-1.5b63808
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-let-plus@0.0.0-2.455e657 sbcl-trivial-garbage@0.21-0.3474f64 sbcl-closer-mop@1.0.0-3.7b86f2a
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/scymtym/architecture.hooks
Licenses: LLGPL
Build system: asdf/sbcl
Synopsis: Hooks extension point mechanism (as in Emacs) for Common Lisp
Description:

A hook, in the present context, is a certain kind of extension point in a program that allows interleaving the execution of arbitrary code with the execution of a the program without introducing any coupling between the two. Hooks are used extensively in the extensible editor Emacs.

In the Common LISP Object System (CLOS), a similar kind of extensibility is possible using the flexible multi-method dispatch mechanism. It may even seem that the concept of hooks does not provide any benefits over the possibilities of CLOS. However, there are some differences:

  • There can be only one method for each combination of specializers and qualifiers. As a result this kind of extension point cannot be used by multiple extensions independently.

  • Removing code previously attached via a :before, :after or :around method can be cumbersome.

  • There could be other or even multiple extension points besides :before and :after in a single method.

  • Attaching codes to individual objects using eql specializers can be cumbersome.

  • Introspection of code attached a particular extension point is cumbersome since this requires enumerating and inspecting the methods of a generic function.

This library tries to complement some of these weaknesses of method-based extension-points via the concept of hooks.

cl-named-closure 0.0.1-0.d573055
Propagated dependencies: cl-alexandria@1.4-0.009b7e5 cl-serapeum@0.0.0-12.c08442a cl-iterate@1.5.3 cl-trivial-cltl2@0.1.1-2.8a3bda3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/kchanqvq/named-closure
Licenses: Expat
Build system: asdf/source
Synopsis: Introspectable, readably-printable and redefinable closures
Description:

A CLOS class that defines callable objects whose behavior is similar to closures but adds conveniences such as introspectability.

sbcl-bst 2.0-0.8545aed
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://codeberg.org/glv/bst
Licenses: GPL 3
Build system: asdf/sbcl
Synopsis: Binary search tree for Common Lisp
Description:

BST is a Common Lisp library for working with binary search trees that can contain any kind of values.

sbcl-alexa 2.1.1
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-cl-ppcre@2.1.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/quil-lang/alexa
Licenses: Modified BSD
Build system: asdf/sbcl
Synopsis: Lexical Analyzer Generator for Common Lisp
Description:

ALEXA is a tool similar to lex or flex for generating lexical analyzers. Unlike tools like lex, however, ALEXA defines a domain-specific language within your Lisp program, so you don't need to invoke a separate tool.

sbcl-funds 1-2.39d4258
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://common-lisp.net/project/funds/
Licenses: ASL 2.0
Build system: asdf/sbcl
Synopsis: Purely functional data structure library in Common Lisp
Description:

Funds provides portable, purely functional data structures in Common Lisp. It includes tree based implementations for Array, Hash, Queue, Stack, and Heap.

sbcl-lwcells 0.0.1-0.e7446ac
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-named-closure@0.0.1-0.d573055 sbcl-damn-fast-priority-queue@0.0.2-0.f4c0374
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/kchanqvq/lwcells
Licenses: GPL 3+
Build system: asdf/sbcl
Synopsis: Light-weight cells for dataflow programming
Description:

A dataflow extension to Common Lisp that maintains a consistent state of cells according to functions specifying their relation.

sbcl-cl-glfw3 0.0.0-1.32c3f34
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-cffi@0.24.1-2.32c90d4 sbcl-cl-opengl@0.1.0-1.e2d83e0 glfw@3.3.10 sbcl-trivial-main-thread@1.0.0-1.25f1149
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/AlexCharlton/cl-glfw3
Licenses: FreeBSD
Build system: asdf/sbcl
Synopsis: Common Lisp bindings to GLFW version 3.x
Description:

This package provides a Common Lisp bindings to glfw, an OpenGL application development library.

sbcl-envy 0.1-2.26a7faa
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/fukamachi/envy
Licenses: FreeBSD
Build system: asdf/sbcl
Synopsis: Common Lisp configuration switcher inspired by Perl's Config::ENV
Description:

Envy is a configuration manager for various applications. Envy uses an environment variable to determine a configuration to use. This can separate configuration system from an implementation.

sbcl-mw-equiv 0.1.2-1.3ae8714
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/sharplispers/mw-equiv/
Licenses: FreeBSD
Build system: asdf/sbcl
Synopsis: Extensible object equivalence protocol for Common Lisp
Description:

Common Lisp comes with quite some functions to compare objects for equality, yet none is applicable in every situation and in general this is hard, as equality of objects depends on the semantics of operations on them. As consequence, users find themselves regularly in a situation where they have to roll their own specialized equality test.

This module provides one of many possible equivalence relations between standard Common Lisp objects. However, it can be extended for new objects through a simple CLOS protocol. The rules when two objects are considered equivalent distinguish between mutating and frozen objects. A frozen object is promised not to be mutated in the future in a way that operations on it can notice the difference.

We have chosen to compare mutating objects only for identity (pointer equality), to avoid various problems. Equivalence for frozen objects on the other hand is established by recursing on the objects' constituent parts and checking their equivalence. Hence, two objects are equivalent under the OBJECT= relation, if they are either identical, or if they are frozen and structurally equivalent, i.e. their constituents are point-wise equivalent.

Since many objects are potentially mutable, but are not necessarily mutated from a certain point in their life time on, it is possible to promise to the equivalence relation that they remain frozen for the rest of their life time, thus enabling coarser equivalence than the often too fine-grained pointer equality.

ecl-colored 1.0.0-2.54e6184
Dependencies: ecl-documentation-utils@1.2.0-0.98630dd
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shinmera.com/docs/colored
Licenses: Zlib
Build system: asdf/ecl
Synopsis: Colour representation, conversion, and operation for Common Lisp
Description:

This is a library for representing and mapping colours between their various spaces.

ecl-zstd 2.0-1.134f058
Dependencies: ecl-cffi@0.24.1-2.32c90d4 ecl-cl-octet-streams@1.2 zstd@1.5.6
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://codeberg.org/glv/cl-zstd
Licenses: GPL 3+
Build system: asdf/ecl
Synopsis: Common Lisp library for Zstandard (de)compression
Description:

This Common Lisp library provides functions for Zstandard compression/decompression using bindings to the libzstd C library.

clasp-damn-fast-priority-queue 0.0.2-0.f4c0374
Dependencies: clasp-alexandria@1.4-0.009b7e5
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/phoe/damn-fast-priority-queue
Licenses: Expat
Build system: asdf/clasp
Synopsis: Fast priority queue
Description:

A heap-based priority queue whose first and foremost priority is speed.

sbcl-language-codes 1.0.0-1.e7aa0e3
Dependencies: sbcl-documentation-utils@1.2.0-0.98630dd
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shinmera.github.io/language-codes/
Licenses: Zlib
Build system: asdf/sbcl
Synopsis: Map ISO language codes to language names in Common Lisp
Description:

This is a small library providing the ISO-639 language code to language name mapping.

ecl-cl-unification 0.0.0-1.01079f3
Dependencies: ecl-cl-ppcre@2.1.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://common-lisp.net/project/cl-unification/
Licenses: Zero-Clause BSD
Build system: asdf/ecl
Synopsis: Unification framework for Common Lisp
Description:

This package provides a framework to unify arbitrary Common Lisp objects while constructing bindings for placeholders (unification variables) in a template sublanguage.

clasp-named-readtables 0.9-4.d5ff162
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/melisgl/named-readtables/
Licenses: Modified BSD
Build system: asdf/clasp
Synopsis: Library that creates a namespace for named readtables
Description:

Named readtables is a library that creates a namespace for named readtables, which is akin to package namespacing in Common Lisp.

cl-smug 0.0.0-0.647a242
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://smug.drewc.ca/
Licenses: Expat
Build system: asdf/source
Synopsis: Parser combinators for Common Lisp
Description:

cl-smug is a library for parsing text, based on monadic parser combinators. Using a simple technique from the functional programming camp, cl-smug makes it simple to create quick extensible recursive descent parsers without funky syntax or impenetrable macrology.

sbcl-retrospectiff 0.2-1.2fbf8c6
Dependencies: sbcl-cl-jpeg@2.8-1.ec55703 sbcl-com.gigamonkeys.binary-data@0.0.0-0.22e9089 sbcl-deflate@1.0.3 sbcl-flexi-streams@1.0.20-1.4951d57 sbcl-ieee-floats@20170924-1.566b51a sbcl-opticl-core@0.0.0-0.b7cd13d
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/slyrus/retrospectiff
Licenses: FreeBSD
Build system: asdf/sbcl
Synopsis: Common Lisp library for TIFF images
Description:

Retrospectiff is a common lisp library for reading and writing images in the TIFF (Tagged Image File Format) format.

sbcl-ciel 0.2.1-0.0b26d64
Dependencies: sbcl-access@1.6.0-1.a4f87fc sbcl-alexandria@1.4-0.009b7e5 sbcl-arrow-macros@0.2.7-0.16bdfd3 sbcl-bordeaux-threads@0.9.3 sbcl-cl-ansi-text@2.0.1-1.8b129d8 sbcl-cl-cron@0.1-0.092aef5 sbcl-cl-csv@1.0.6-2.68ecb5d sbcl-cl-ftp@1.6.1-0.530f1ec sbcl-cl-json-pointer@0.0.0-0.f6760e2 sbcl-cl-ppcre@2.1.1 sbcl-cl-reexport@0.1-2.03ad7a0 sbcl-cl-str@0.21 sbcl-clesh@0.0.0-1.44e96e0 sbcl-clingon@0.5.0-1.f2a730f sbcl-closer-mop@1.0.0-3.7b86f2a sbcl-cmd@0.0.1-8.0164d57 sbcl-dbi@0.11.1-3.be4df4f sbcl-defstar@1.0.0-1.132829d sbcl-dexador@0.9.15-3.d7ac217 sbcl-dissect@1.0.0-2.a70cabc sbcl-easy-routes@0.0.0-0.7832f8b sbcl-file-finder@0.2.0-0.ec392d7 sbcl-file-notify@1.0.0-0.f12dc2f sbcl-for@1.2.0-1.a397829 sbcl-fset@1.4.0 sbcl-generic-cl@0.9 sbcl-hunchentoot@1.3.0-1.7686239 sbcl-local-time@1.0.6-4.40169fe sbcl-log4cl@1.1.4-2.fe3da51 sbcl-lparallel@2.8.4-1.80fc295 sbcl-lquery@3.2.1-2.08c9cb6 sbcl-metabang-bind@0.8.0-2.0819642 sbcl-modf@0-0.dea93fe sbcl-moira@0.0.0-1.448d8e7 sbcl-named-readtables@0.9-4.d5ff162 sbcl-parse-float@0.0.0-2.3074765 sbcl-parse-number@1.7 sbcl-printv@0.1.0-2.e717a7f sbcl-progressons@0.1-0.69a8092 sbcl-pythonic-string-reader@0.0.0-1.47a70ba sbcl-quicksearch@0.01.04-1.fb02ecf sbcl-quri@0.7.0-0.03ecaf3 sbcl-repl-utilities@0.0.0-1.7e300df sbcl-secret-values@0.0.0-0.72996c0 sbcl-serapeum@0.0.0-12.c08442a sbcl-shasht@0.1-2.27ba0a8 sbcl-shlex@0.0.0-2.3dee1cb sbcl-spinneret@3.0-6.d4398b5 sbcl-sxql@0.1.0-4.2a9121b sbcl-termp@0.1-0.29789fe sbcl-trivia@0.1-0.8b406c3 sbcl-trivial-arguments@1.1.0-1.ecd84ed sbcl-trivial-do@0.1-1.03a1729 sbcl-trivial-monitored-thread@0.3.11-0.b0bab23 sbcl-trivial-package-local-nicknames@0.2 sbcl-trivial-types@0.0.1 sbcl-vgplot@0.0.0-0.7632992 sbcl-which@0.1-1.b2333e4
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: http://ciel-lang.org/
Licenses: Expat
Build system: asdf/sbcl
Synopsis: CIEL Is an Extended Lisp
Description:

CIEL is a ready-to-use collection of libraries providing: a binary, to run CIEL scripts; a simple full-featured REPL for the terminal; a Lisp library and a core image.

sbcl-metatilities-base 0.6.6-2.ef04337
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://common-lisp.net/project/metatilities-base/
Licenses: Expat
Build system: asdf/sbcl
Synopsis: Core of the metatilities Common Lisp library
Description:

Metatilities-base is the core of the metatilities Common Lisp library which implements a set of utilities.

cl-docutils 0.1.1-1.756b5ad
Propagated dependencies: cl-ppcre@2.1.1 cl-data-format-validation@0.2.0-1.95d4476 cl-trivial-gray-streams@2.0-1.2b3823e
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: http://www.jarw.org.uk/lisp/cl-docutils.html
Licenses: GPL 3
Build system: asdf/source
Synopsis: Document utilities and Restructured text parser
Description:

cl-docutils is a Common Lisp implementation of the Docutils text processing system for processing plaintext into presentational formats such as HTML and LaTeX. It is based upon the Python Docutils reference implementation but uses Common Lisp idioms making it easier to extend and more flexible. As with the reference implementation it includes a parser for the reStructured text plaintext markup syntax which is suitable for marking up documentation and for use as user markup for collaborative web sites. It is successfully used to support a higher education peer-review assessment and online tutorial system.

sbcl-cl-mpg123 1.0.0-1.5f042c8
Dependencies: sbcl-cffi@0.24.1-2.32c90d4 sbcl-cl-out123@1.0.0-2.41771bf sbcl-documentation-utils@1.2.0-0.98630dd mpg123@1.31.2 sbcl-trivial-features@1.0 sbcl-trivial-garbage@0.21-0.3474f64 sbcl-verbose@2.0.0-1.c5b7ecd
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shirakumo.github.io/cl-mpg123/
Licenses: Zlib
Build system: asdf/sbcl
Synopsis: Common Lisp bindings to libmpg123
Description:

This is a bindings and wrapper library to libmpg123 allowing for convenient, extensive, and fast decoding of MPEG1/2/3 (most prominently mp3) files.

ecl-wordnet 0.0.1-0.8cd0db8
Dependencies: ecl-split-sequence@2.0.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/phoe/wordnet
Licenses: Expat
Build system: asdf/ecl
Synopsis: Common Lisp interface to WordNet
Description:

This software provides an interface by which Common Lisp programs can access lexicographic data from WordNet.

Page: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296
Total results: 31091