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

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.


perl-file-find-rule-perl 1.15
Propagated dependencies: perl-file-find-rule@0.35 perl-params-util@1.102 perl-parse-cpan-meta@2.150010
Channel: guix
Location: gnu/packages/perl.scm (gnu packages perl)
Home page: https://metacpan.org/release/File-Find-Rule-Perl
Licenses: GPL 1+
Build system: perl
Synopsis: Common rules for searching for Perl things
Description:

File::Find::Rule::Perl provides methods for finding various types Perl-related files, or replicating search queries run on a distribution in various parts of the CPAN ecosystem.

perl-digest-perl-md5 1.9
Channel: guix
Location: gnu/packages/perl.scm (gnu packages perl)
Home page: https://metacpan.org/release/Digest-Perl-MD5
Licenses: GPL 1+
Build system: perl
Synopsis: Perl Implementation of Rivest's MD5 algorithm
Description:

This Digest::Perl::MD5 has the same interface as the much faster Digest::MD5, but it's a pure Perl implementation of MD5. Because of this it is slow but it works without C code.

perl6-terminal-ansicolor 0.5
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/tadzik/Terminal-ANSIColor
Licenses: Expat
Build system: rakudo
Synopsis: Colorize terminal output
Description:

This is a Terminal::ANSIColor module for Raku.

perl6-json-marshal 0.0.23
Propagated dependencies: perl6-json-fast@0.17 perl6-json-name@0.0.6
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jonathanstowe/JSON-Marshal
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Simple serialization of objects to JSON
Description:

This library provides a single exported subroutine to create a JSON representation of an object. It should round trip back into an object of the same class using JSON::Unmarshal.

perl6-format-lisp 0.0.2-0.1ae31e2
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/raku-community-modules/Format-Lisp
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Common Lisp's format call in Raku
Description:

This Raku module implements Common Lisp's format language.

perl6-mime-base64 1.2.3
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/raku-community-modules/MIME-Base64
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Encoding and decoding Base64 ASCII strings
Description:

This Raku module implements encoding and decoding to and from base64.

perl6-json-optin 0.0.1
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jonathanstowe/JSON-OptIn
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Provide a trait and role to identify opt-in JSON serialization
Description:

This provides a trait and a role for the identification of `opt in' serializable attributes in, e.g., JSON::Marshal. It's probably not necessary to use this directly as it will be required by, e.g., JSON::Name, but it's just more convenient to package it separately.

perl6-json-unmarshal 0.0.0-1.e1b6288
Propagated dependencies: perl6-json-fast@0.17 perl6-json-name@0.0.6
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/tadzik/JSON-Unmarshal
Licenses: Expat
Build system: rakudo
Synopsis: Make JSON from an Object
Description:

This library provides a single exported subroutine to create an object from a JSON representation of an object.

perl6-test-mock 1.5-0.1130427
Propagated dependencies: perl6-oo-monitors@1.1.1
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jnthn/test-mock
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Module for simply generating and checking mock objects
Description:

Test::Mock is a module that works alongside the standard Test module to help you write tests when you want to verify what methods are called on an object, while still having calls to undefined methods die. You get started just as normal with the test file, but also add a use statement for Test::Mock.

perl6-zef 0.13.8
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/ugexe/zef
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Raku Module Management
Description:

Zef is a Raku package (module) manager. It can be used to download and install Raku modules in your home directory or as a system-wide module.

perl6-uri 0.3.5
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/raku-community-modules/URI
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: URI implementation using Raku
Description:

A URI implementation using Raku grammars to implement RFC 3986 BNF. Currently only implements parsing. Includes URI::Escape to (un?)escape characters that aren't otherwise allowed in a URI with % and a hex character numbering.

perl6-oo-monitors 1.1.1
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jnthn/oo-monitors
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Monitors with condition variables for Raku
Description:

A monitor provides per-instance mutual exclusion for objects. This means that for a given object instance, only one thread can ever be inside its methods at a time. This is achieved by a lock being associated with each object. The lock is acquired automatically at the entry to each method in the monitor. Condition variables are also supported.

nqp 2022.04
Dependencies: moarvm@2022.04
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/Raku/nqp
Licenses: Artistic License 2.0
Build system: perl
Synopsis: Not Quite Perl
Description:

This is "Not Quite Perl" -- a lightweight Raku-like environment for virtual machines. The key feature of NQP is that it's designed to be a very small environment (as compared with, say, Rakudo) and is focused on being a high-level way to create compilers and libraries for virtual machines like MoarVM, the JVM, and others.

Unlike a full-fledged implementation of Raku, NQP strives to have as small a runtime footprint as it can, while still providing a Raku object model and regular expression engine for the virtual machine.

perl6-json-name 0.0.6
Propagated dependencies: perl6-json-optin@0.0.1
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jonathanstowe/JSON-Name
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Provide a trait to store an alternative JSON name
Description:

This is released as a dependency of JSON::Marshal and JSON::Unmarshal in order to save duplication, it is intended to store a separate JSON name for an attribute where the name of the JSON attribute might be changed, either for aesthetic reasons or the name is not a valid Perl identifier. It will of course also be needed in classes thar are going to use JSON::Marshal or JSON::Unmarshal for serialization/deserialization.

perl6-tap-harness 0.3.5
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/Raku/tap-harness6
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: TAP harness for Raku
Description:

This module provides the prove6 command which runs a TAP based test suite and prints a report. The prove6 command is a minimal wrapper around an instance of this module.

perl6-svg 0.0.0-1.07190c0
Propagated dependencies: perl6-xml-writer@0.0.0-1.4d30a9d
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/moritz/svg
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Raku module to generate SVG
Description:

This is a Raku module that makes it easy to write Scalable Vector Graphic files (SVG). Right now it is a shallow wrapper around XML::Writer, adding only the xmlns attributes that identify an XML file as SVG.

perl6-meta6 0.0.26
Propagated dependencies: perl6-json-class@0.0.18
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jonathanstowe/META6
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Do things with Raku META files
Description:

This provides a representation of the Raku META files specification -- the META file data can be read, created, parsed and written in a manner that is conformant with the specification.

Where they are known about, it also makes allowance for customary usage in existing software (such as installers and so forth).

The intent of this is to allow the generation and testing of META files for module authors, so it can provide meta-information about whether the attributes are mandatory as per the spec and, where known, the places that customary attributes are used.

perl6-json-class 0.0.18
Propagated dependencies: perl6-json-marshal@0.0.23 perl6-json-unmarshal@0.0.0-1.e1b6288
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jonathanstowe/JSON-Class
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Provide simple serialization/deserialization of objects to/from JSON
Description:

This is a simple role that provides methods to instantiate a class from a JSON string that (hopefully) represents it, and to serialize an object of the class to a JSON string. The JSON created from an instance should round trip to a new instance with the same values for the public attributes. Private attributes (that is ones without accessors,) will be ignored for both serialization and deserialization. The exact behaviour depends on that of JSON::Marshal and JSON::Unmarshal respectively.

moarvm 2022.04
Propagated dependencies: libatomic-ops@7.8.2 libffi@3.4.6 libtommath@1.3.0 libuv@1.44.2
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://moarvm.org/
Licenses: Artistic License 2.0
Build system: perl
Synopsis: VM for NQP And Rakudo Perl 6
Description:

Short for "Metamodel On A Runtime", MoarVM is a modern virtual machine built for the Rakudo Perl 6 compiler and the NQP Compiler Toolchain. Highlights include:

  • Great Unicode support, with strings represented at grapheme level

  • Dynamic analysis of running code to identify hot functions and loops, and perform a range of optimizations, including type specialization and inlining

  • Support for threads, a range of concurrency control constructs, and asynchronous sockets, timers, processes, and more

  • Generational, parallel, garbage collection

  • Support for numerous language features, including first class functions, exceptions, continuations, runtime loading of code, big integers and interfacing with native libraries.

perl6-svg-plot 0.0.0-1.062570a
Propagated dependencies: perl6-svg@0.0.0-1.07190c0
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/moritz/svg-plot
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Raku charting and plotting library that produces SVG output
Description:

SVG::Plot is a simple 2D chart plotter for Raku. It currently supports bars, stacked bars, lines and points (both equally spaced with optional labels, or xy plots).

perl6-test-meta 0.0.17
Propagated dependencies: perl6-license-spdx@3.16.0 perl6-meta6@0.0.26 perl6-uri@0.3.5
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/jonathanstowe/Test-META
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Test a distribution's META file
Description:

This provides a simple mechanism for module authors to have some confidence that they have a working distribution META description file.

perl6-xml-writer 0.0.0-1.4d30a9d
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/masak/xml-writer
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Raku module to generate XML
Description:

XML::Writer is a module for creating XML in Raku.

nqp-configure 2022.04
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/Raku/nqp-configure
Licenses: Artistic License 2.0
Build system: perl
Synopsis: Configuration and build modules for NQP
Description:

This library provides support modules for NQP and Rakudo Configure.pl scripts.

perl6-json 1.0
Channel: guix
Location: gnu/packages/perl6.scm (gnu packages perl6)
Home page: https://github.com/moritz/json
Licenses: Artistic License 2.0
Build system: rakudo
Synopsis: Minimal JSON (de)serializer
Description:

This module is a simple Raku module for serializing and deserializing JSON.

Page: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296
Total results: 31091