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

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 search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.


ghc-hs-bibutils 6.10.0.0
Dependencies: ghc-syb@0.7.2.4
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/wilx/hs-bibutils
Licenses: GPL 2+
Build system: haskell
Synopsis: Haskell bindings to bibutils
Description:

This package provides Haskell bindings to bibutils, a library that interconverts between various bibliography formats using a common MODS-format XML intermediate.

ghc-zstd 0.1.3.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/luispedro/hs-zstd
Licenses: Modified BSD
Build system: haskell
Synopsis: Haskell bindings to the Zstandard compression algorithm
Description:

This library provides Haskell bindings to the Zstandard compression algorithm, a fast lossless compression algorithm targeting real-time compression scenarios at zlib-level and better compression ratios.

ghc-either 5.0.3
Dependencies: ghc-bifunctors@5.6.2 ghc-profunctors@5.6.3 ghc-semigroupoids@6.0.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://github.com/ekmett/either/
Licenses: Modified BSD
Build system: haskell
Synopsis: Provides an either monad transformer for Haskell
Description:

This Haskell package provides an either monad transformer.

ghc-psqueues 0.2.8.2
Dependencies: ghc-hashable@1.5.0.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://hackage.haskell.org/package/psqueues
Licenses: Modified BSD
Build system: haskell
Synopsis: Pure priority search queues
Description:

The psqueues package provides Priority Search Queues in three different flavors:

  • OrdPSQ k p v, which uses the Ord k instance to provide fast insertion, deletion and lookup. This implementation is based on Ralf Hinze's A Simple Implementation Technique for Priority Search Queues.

    Hence, it is similar to the PSQueue library, although it is considerably faster and provides a slightly different API.

  • IntPSQ p v is a far more efficient implementation. It fixes the key type to Int and uses a https://en.wikipedia.org/wiki/Radix_tree, radix tree (like IntMap) with an additional min-heap property.

  • HashPSQ k p v is a fairly straightforward extension of IntPSQ: it simply uses the keys' hashes as indices in the IntPSQ. If there are any hash collisions, it uses an OrdPSQ to resolve those. The performance of this implementation is comparable to that of IntPSQ, but it is more widely applicable since the keys are not restricted to Int, but rather to any Hashable datatype.

Each of the three implementations provides the same API, so they can be used interchangeably.

Typical applications of Priority Search Queues include:

  • Caches, and more specifically LRU Caches;

  • Schedulers;

  • Pathfinding algorithms, such as Dijkstra's and A*.

ghc-hslogger 1.3.2.0
Dependencies: ghc-network-bsd@2.8.1.0 ghc-network@3.2.8.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/haskell-hvr/hslogger/wiki
Licenses: Modified BSD
Build system: haskell
Synopsis: Logging framework for Haskell, similar to Python's logging module
Description:

Hslogger lets each log message have a priority and source be associated with it. The programmer can then define global handlers that route or filter messages based on the priority and source. It also has a syslog handler built in.

ghc-c2hs 0.28.8
Dependencies: ghc-language-c@0.10.0 ghc-dlist@1.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/haskell/c2hs
Licenses: GPL 2
Build system: haskell
Synopsis: Create Haskell bindings to C libraries
Description:

C->Haskell assists in the development of Haskell bindings to C libraries. It extracts interface information from C header files and generates Haskell code with foreign imports and marshaling. Unlike writing foreign imports by hand (or using hsc2hs), this ensures that C functions are imported with the correct Haskell types.

ghc-charset 0.3.12
Dependencies: ghc-unordered-containers@0.2.20
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://github.com/ekmett/charset
Licenses: Modified BSD
Build system: haskell
Synopsis: Fast unicode character sets for Haskell
Description:

This package provides fast unicode character sets for Haskell, based on complemented PATRICIA tries.

ghc-old-time 1.1.0.4
Dependencies: ghc-old-locale@1.0.0.7
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://hackage.haskell.org/package/old-time
Licenses: Modified BSD
Build system: haskell
Synopsis: Time compatibility library for Haskell
Description:

Old-time is a package for backwards compatibility with the old time library. For new projects, the newer time library is recommended.

ghc-scientific 0.3.8.0
Dependencies: ghc-hashable@1.5.0.0 ghc-integer-logarithms@1.0.4 ghc-primitive@0.9.1.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/basvandijk/scientific
Licenses: Modified BSD
Build system: haskell
Synopsis: Numbers represented using scientific notation
Description:

This package provides Data.Scientific, which provides the number type Scientific. Scientific numbers are arbitrary precision and space efficient. They are represented using scientific notation.

ghc-text-metrics 0.3.3
Dependencies: ghc-vector@0.13.2.0 ghc-primitive@0.9.1.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/mrkkrp/text-metrics
Licenses: Modified BSD
Build system: haskell
Synopsis: Calculate various string metrics efficiently
Description:

This library provides tools to calculate various string metrics efficiently.

ghc-atomic-counter 0.1.2.3
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/sergv/atomic-counter
Licenses: ASL 2.0
Build system: haskell
Synopsis: Mutable counters that can be modified with atomic operatinos
Description:

This package defines Counter type that can be safely modified concurrently from multiple threads. The type supports only few operations, namely read, write, cas (compare and swap), add, subtract and a few bitwise ones like or, and xor. Most common use case is having a shared counter that multiple threads increment. Another potential use case is lightweight locks.

ghc-erf 2.0.0.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://hackage.haskell.org/package/erf
Licenses: Modified BSD
Build system: haskell
Synopsis: The error function, erf, and related functions for Haskell
Description:

This Haskell library provides a type class for the error function, erf, and related functions. Instances for Float and Double.

ghc-hslua 2.3.1
Dependencies: ghc-hslua-aeson@2.3.1.1 ghc-hslua-core@2.3.2 ghc-hslua-classes@2.3.1 ghc-hslua-marshalling@2.3.1 ghc-hslua-objectorientation@2.3.1 ghc-hslua-packaging@2.3.1 ghc-hslua-typing@0.1.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://hslua.org/
Licenses: Expat
Build system: haskell
Synopsis: Lua language interpreter embedding in Haskell
Description:

The Scripting.Lua module is a wrapper of the Lua language interpreter as described in https://www.lua.org/.

ghc-wizards 1.0.3
Dependencies: ghc-control-monad-free@0.6.2
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://hackage.haskell.org/package/wizards
Licenses: Modified BSD
Build system: haskell
Synopsis: High level, generic library for interrogative user interfaces
Description:

wizards is a package designed for the quick and painless development of interrogative programs, which revolve around a dialogue with the user, who is asked a series of questions in a sequence much like an installation wizard.

Everything from interactive system scripts, to installation wizards, to full-blown shells can be implemented with the support of wizards.

It is developed transparently on top of a free monad, which separates out the semantics of the program from any particular interface. A variety of backends exist, including console-based System.Console.Wizard.Haskeline and System.Console.Wizard.BasicIO, and the pure System.Console.Wizard.Pure. It is also possible to write your own backends, or extend existing back-ends with new features. While both built-in IO backends operate on a console, there is no reason why wizards cannot also be used for making GUI wizard interfaces.

ghc-hslua-module-zip 1.1.4
Dependencies: ghc-hslua-core@2.3.2 ghc-hslua-packaging@2.3.1 ghc-hslua-list@1.1.4 ghc-hslua-marshalling@2.3.1 ghc-hslua-typing@0.1.1 ghc-zip-archive@0.4.3.2
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://hslua.org/
Licenses: Expat
Build system: haskell
Synopsis: Lua module to work with file zips.
Description:

Module with function for creating, modifying, and extracting files from zip archives.

ghc-gtk2hs-buildtools 0.13.12.0
Dependencies: ghc-random@1.2.1.3 ghc-hashtables@1.4.2
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://projects.haskell.org/gtk2hs/
Licenses: GPL 2
Build system: haskell
Synopsis: Tools to build the Gtk2Hs suite of user interface libraries
Description:

This package provides a set of helper programs necessary to build the Gtk2Hs suite of libraries. These tools include a modified c2hs binding tool that is used to generate FFI declarations, a tool to build a type hierarchy that mirrors the C type hierarchy of GObjects found in glib, and a generator for signal declarations that are used to call back from C to Haskell. These tools are not needed to actually run Gtk2Hs programs.

ghc-system-filepath 0.4.14.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/fpco/haskell-filesystem
Licenses: Expat
Build system: haskell
Synopsis: High-level, byte-based file and directory path manipulations
Description:

Provides a FilePath datatype and utility functions for operating on it. Unlike the filepath package, this package does not simply reuse String, increasing type safety.

ghc-pretty-simple 4.1.3.0
Dependencies: ghc-prettyprinter@1.7.1 ghc-prettyprinter-ansi-terminal@1.1.3 ghc-optparse-applicative@0.18.1.0 ghc-aeson@2.2.3.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/cdepillabout/pretty-simple
Licenses: Modified BSD
Build system: haskell
Synopsis: Pretty printer for data types with a 'Show' instance
Description:

Pretty-simple is a pretty printer for Haskell data types that have a Show instance.

ghc-tdigest 0.3.1
Dependencies: ghc-reducers@3.12.5 ghc-vector@0.13.2.0 ghc-vector-algorithms@0.9.1.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/phadej/haskell-tdigest#readme
Licenses: Modified BSD
Build system: haskell
Synopsis: On-line accumulation of rank-based statistics
Description:

This package provides a new data structure for accurate on-line accumulation of rank-based statistics such as quantiles and trimmed means. . See original paper: "Computing extremely accurate quantiles using t-digest" by Ted Dunning and Otmar Ertl for more details <https://github.com/tdunning/t-digest/blob/07b8f2ca2be8d0a9f04df2feadad5ddc1bb73c88/docs/t-digest-paper/histo.pdf>.

ghc-svg-builder 0.1.1
Dependencies: ghc-blaze-builder@0.4.4.1 ghc-hashable@1.5.0.0 ghc-unordered-containers@0.2.20
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/diagrams/svg-builder.git
Licenses: Modified BSD
Build system: haskell
Synopsis: Domain-specific language for building Scalable Vector Graphics
Description:

Easy-to-write domain-specific language (DSL) for building Scalable Vector Graphics (SVG).

ghc-project-template 0.2.1.0
Dependencies: ghc-base64-bytestring@1.2.1.0 ghc-conduit@1.3.6.1 ghc-conduit-extra@1.3.8 ghc-resourcet@1.3.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/fpco/haskell-ide
Licenses: Modified BSD
Build system: haskell
Synopsis: Specify Haskell project templates and generate files
Description:

Haskell library for both generating and consuming project templates.

ost IDEs provide the concept of a project template: instead of writing all of the code for a project from scratch, you select a template, answer a few questions, and a bunch of files are automatically generated.

project-template tries to provide a canonical Haskell library for implementing the ideal templating system.

ghc-path-io 1.8.2
Dependencies: ghc-dlist@1.0 ghc-path@0.9.6-1.17294d1 ghc-temporary@1.3 ghc-unix-compat@0.7.4.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/mrkkrp/path-io
Licenses: Modified BSD
Build system: haskell
Synopsis: Functions for manipulating well-typed paths
Description:

This package provides an interface to the directory package for users of path. It also implements some missing stuff like recursive scanning and copying of directories, working with temporary files/directories, and more.

ghc-word-wrap 0.5
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/jtdaugherty/word-wrap/
Licenses: Modified BSD
Build system: haskell
Synopsis: Haskell library for word-wrapping text
Description:

The word-wrap Haskell library wraps long lines of text.

ghc-ansi-terminal-types 1.1.3
Dependencies: ghc-colour@2.3.6
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/UnkindPartition/ansi-terminal
Licenses: Modified BSD
Build system: haskell
Synopsis: Types and functions used to represent SGR aspects
Description:

The \'ANSI\ standards refer to the visual style of displaying characters as their \'graphic rendition\'. The \'ANSI\ codes to establish the graphic rendition for subsequent text are referred to as SELECT GRAPHIC RENDITION (SGR). This package exposes modules that export types and functions used to represent SGR aspects.

Total packages: 72465