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

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.


ghc-lzma-static 5.2.5.5
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/hasufell/lzma-static
Licenses: Modified BSD
Build system: haskell
Synopsis: LZMA/XZ compression and decompression (static).
Description:

This package provides a pure interface for compressing and decompressing LZMA (Lempel–Ziv–Markov chain algorithm) streams of data represented as lazy ByteStrings. A monadic incremental interface is provided as well. This package relies on the liblzma C library.

ghc-multimap 1.2.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hub.darcs.net/scravy/multimap
Licenses: Expat
Build system: haskell
Synopsis: A multimap.
Description:
This is a simple implementation of a multimap, based on "Data.Map". . [@v1.1@] @!@ had its arguments flipped. Fixed. Also added @fromMap@. . [@v1.2@] Added "Data.SetMap", renamed @Multimap@ to "Data.MultiMap". Fixed the type of @delete@. Derive instances for @Data@ and @Typeable@. . [@v1.2.1@] Fixed typos in the documentation.
ghc-store-core 0.4.4.7
Dependencies: ghc-primitive@0.7.3.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/fpco/store#readme
Licenses: Expat
Build system: haskell
Synopsis: Fast and lightweight binary serialization
Description:

This package lacks a description. Run "info '(guix) Synopses and Descriptions'" for more information.

ghc-abstract-deque-tests 0.3
Dependencies: ghc-abstract-deque@0.3 ghc-random@1.2.1.1 ghc-hunit@1.6.2.0 ghc-test-framework@0.8.2.0 ghc-test-framework-hunit@0.3.0.2
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/rrnewton/haskell-lockfree/wiki
Licenses: Modified BSD
Build system: haskell
Synopsis: A test-suite for any queue or double-ended queue satisfying an interface
Description:

This package provides tests that can be used with any queue implementation that satisfies the `abstract-deque` interface.

ghc-ascii-progress 0.3.3.0
Dependencies: ghc-concurrent-output@1.10.18 ghc-async@2.2.4 ghc-data-default@0.7.1.1 ghc-hspec-discover@2.9.7
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/yamadapc/haskell-ascii-progress
Licenses: Expat
Build system: haskell
Synopsis: A simple progress bar for the console.
Description:

This package provides a simple Haskell progress bar for the console. Heavily borrows from TJ Holowaychuk's Node.JS project <https://github.com/tj/node-progress progress> . <https://github.com/yamadapc/haskell-ascii-progress github>.

ghc-time 1.12
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell/time
Licenses:
Build system: haskell
Synopsis: A time library
Description:

Time, clocks and calendars.

ghc-composition-prelude 3.0.1.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hackage.haskell.org/package/composition-prelude
Licenses: Modified BSD
Build system: haskell
Synopsis: Higher-order function combinators
Description:

Replacement for [composition](hackage.haskell.org/package/composition) or [composition-extra](hackage.haskell.org/package/composition-extra), exporting everything in one module.

ghc-bzip2-clib 1.0.8
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/hasufell/bzip2-clib
Licenses: Modified BSD
Build system: haskell
Synopsis: bzip2 C sources.
Description:

Haskell bindings for libarchive. Provides the ability to unpack archives, including the ability to unpack archives lazily.

ghc-gi-cairo-render 0.1.2
Dependencies: ghc-utf8-string@1.0.2 ghc-haskell-gi-base@0.26.8 cairo@1.18.4
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/cohomology/gi-cairo-render
Licenses: Modified BSD
Build system: haskell
Synopsis: GI friendly Binding to the Cairo library.
Description:

Cairo is a library to render high quality vector graphics. There exist various backends that allows rendering to Gtk windows, PDF, PS, PNG and SVG documents, amongst others.

ghc-quickcheck 2.16.0.0
Dependencies: ghc-random@1.2.1.1 ghc-splitmix@0.1.0.4 ghc-data-array-byte@0.1.0.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/nick8325/quickcheck
Licenses: Modified BSD
Build system: haskell
Synopsis: Automatic testing of Haskell programs
Description:

QuickCheck is a library for random testing of program properties. The programmer provides a specification of the program, in the form of properties which functions should satisfy, and QuickCheck then tests that the properties hold in a large number of randomly generated cases. Specifications are expressed in Haskell, using combinators provided by QuickCheck. QuickCheck provides combinators to define properties, observe the distribution of test data, and define test data generators. . Most of QuickCheck's functionality is exported by the main "Test.QuickCheck" module. The main exception is the monadic property testing library in "Test.QuickCheck.Monadic". . If you are new to QuickCheck, you can try looking at the following resources: . * The <http://www.cse.chalmers.se/~rjmh/QuickCheck/manual.html official QuickCheck manual>. It's a bit out-of-date in some details and doesn't cover newer QuickCheck features, but is still full of good advice. * <https://begriffs.com/posts/2017-01-14-design-use-quickcheck.html>, a detailed tutorial written by a user of QuickCheck. . The <https://hackage.haskell.org/package/quickcheck-instances quickcheck-instances> companion package provides instances for types in Haskell Platform packages at the cost of additional dependencies.

ghc-hspec-expectations 0.8.4
Dependencies: ghc-hunit@1.6.2.0 ghc-call-stack@0.4.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/hspec/hspec-expectations#readme
Licenses: Expat
Build system: haskell
Synopsis: Catchy combinators for HUnit
Description:

Catchy combinators for HUnit: <https://github.com/hspec/hspec-expectations#readme>.

ghc-pipes-group 1.0.12
Dependencies: ghc-free@5.1.10 ghc-pipes@4.3.16 ghc-pipes-parse@3.0.9
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hackage.haskell.org/package/pipes-group
Licenses: Modified BSD
Build system: haskell
Synopsis: Group streams into substreams
Description:

@pipes-group@ uses @FreeT@ and lenses to group streams into sub-streams. Notable features include: . * /Perfect Streaming/: Group elements without collecting them into memory . * /Lens Support/: Use lenses to simplify many common operations . @Pipes.Group@ contains the full documentation for this library. . Read @Pipes.Group.Tutorial@ for an extensive tutorial.

ghc-tasty-hunit 0.10.2
Dependencies: ghc-tasty@1.5.3 ghc-call-stack@0.4.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/UnkindPartition/tasty
Licenses: Expat
Build system: haskell
Synopsis: HUnit support for the Tasty test framework.
Description:

HUnit support for the Tasty test framework. . Note that this package does not depend on HUnit but implements the relevant subset of its API. The name is a legacy of the early versions of tasty-hunit and of test-framework-hunit, which did depend on HUnit.

ghc-libzfs 0.2.0.0
Dependencies: zfs@2.3.4
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://hackage.haskell.org/package/libzfs
Licenses: Expat
Build system: haskell
Synopsis: Bindings to libzfs, for dealing with the Z File System and Zpools.
Description:

Bindings to libzfs, for dealing with the Z File System and Zpools.

ghc-gi-gobject 2.0.31
Dependencies: ghc-haskell-gi-base@0.26.8 ghc-haskell-gi@0.26.14 ghc-haskell-gi-overloading@1.0 ghc-gi-glib@2.0.30 gobject-introspection@1.82.0 glib@2.83.3
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell-gi/haskell-gi
Licenses: LGPL 2.1
Build system: haskell
Synopsis: GObject bindings
Description:

Bindings for GObject, autogenerated by haskell-gi.

ghc-xml-helpers 1.0.0
Dependencies: ghc-xml@1.3.14
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://github.com/acw/xml-helpers
Licenses: Modified BSD
Build system: haskell
Synopsis: Some useful helper functions for the xml library.
Description:

Included are some folds and maps I've found useful in parsing XML data.

ghc-smtlib-backends 0.4
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hackage.haskell.org/package/smtlib-backends
Licenses: Expat
Build system: haskell
Synopsis: Low-level functions for SMT-LIB-based interaction with SMT solvers.
Description:

This library provides an extensible interface for interacting with SMT solvers using SMT-LIB. The smtlib-backends-process package provides a backend that runs solvers as external processes, and the smtlib-backends-z3 package provides a backend that uses inlined calls to Z3's C API.

ghc-gi-harfbuzz 0.0.10
Dependencies: freetype@2.13.3 ghc-gi-freetype2@2.0.5 ghc-haskell-gi-base@0.26.8 ghc-haskell-gi@0.26.14 ghc-haskell-gi-overloading@1.0 ghc-gi-gobject@2.0.31 ghc-gi-glib@2.0.30 gobject-introspection@1.82.0 harfbuzz@11.4.4
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell-gi/haskell-gi
Licenses: LGPL 2.1
Build system: haskell
Synopsis: HarfBuzz bindings
Description:

Bindings for HarfBuzz, autogenerated by haskell-gi.

ghc-th-abstraction 0.7.1.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/glguy/th-abstraction
Licenses: ISC
Build system: haskell
Synopsis: Nicer interface for reified information about data types
Description:

This package normalizes variations in the interface for inspecting datatype information via Template Haskell so that packages and support a single, easier to use informational datatype while supporting many versions of Template Haskell.

ghc-liquid-fixpoint 0.9.2.5
Dependencies: ghc-ansi-terminal@0.11.4 ghc-async@2.2.4 ghc-attoparsec@0.14.4 ghc-store@0.7.20 ghc-boxes@0.1.5 ghc-cereal@0.5.8.3 ghc-cmdargs@0.10.22 ghc-fgl@5.7.0.3 ghc-hashable@1.4.2.0 ghc-intern@0.9.6 ghc-parallel@3.2.2.0 ghc-parser-combinators@1.3.0 ghc-typed-process@0.2.11.0 ghc-megaparsec@9.7.0 ghc-syb@0.7.2.3 ghc-smtlib-backends@0.4 ghc-smtlib-backends-process@0.3 ghc-lens-family@2.1.3 ghc-intern@0.9.6 ghc-transformers@0.5.6.2 ghc-unordered-containers@0.2.19.1 ghc-aeson@2.0.3.0 ghc-rest-rewrite@0.4.5 ghc-ascii-progress@0.3.3.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/ucsd-progsys/liquid-fixpoint
Licenses: Modified BSD
Build system: haskell
Synopsis: Predicate Abstraction-based Horn-Clause/Implication Constraint Solver
Description:

This package implements an SMTLIB based Horn-Clause\/Logical Implication constraint solver used for Liquid Types. . The package includes: . 1. Types for Expressions, Predicates, Constraints, Solutions 2. Code for solving constraints . Requirements . In addition to the .cabal dependencies you require . * A Z3 (<http://z3.codeplex.com>) or CVC4 (<http://cvc4.cs.nyu.edu>) binary.

ghc-heaps 0.4.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://github.com/ekmett/heaps/
Licenses: Modified BSD
Build system: haskell
Synopsis: Asymptotically optimal Brodal/Okasaki heaps.
Description:

Asymptotically optimal Brodal\/Okasaki bootstrapped skew-binomial heaps from the paper <http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.973 "Optimal Purely Functional Priority Queues">, extended with a Foldable interface.

ghc-rest-rewrite 0.4.5
Dependencies: ghc-hashable@1.4.2.0 ghc-time@1.12 ghc-unordered-containers@0.2.19.1 ghc-quickcheck@2.16.0.0 ghc-monad-loops@0.4.3 z3@4.13.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hackage.haskell.org/package/rest-rewrite
Licenses: Modified BSD
Build system: haskell
Synopsis: Rewriting library with online termination checking
Description:

REST is a Rewriting library with online termination checking. For more details see the paper at https://arxiv.org/abs/2202.05872.

ghc-gi-gdkpixbuf 2.0.32
Dependencies: gdk-pixbuf@2.42.12 ghc-haskell-gi-base@0.26.8 ghc-haskell-gi@0.26.14 ghc-haskell-gi-overloading@1.0 ghc-gi-gio@2.0.35 ghc-gi-gobject@2.0.31 ghc-gi-glib@2.0.30 ghc-gi-gmodule@2.0.6 gobject-introspection@1.82.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell-gi/haskell-gi
Licenses: LGPL 2.1
Build system: haskell
Synopsis: GdkPixbuf bindings
Description:

Bindings for GdkPixbuf, autogenerated by haskell-gi.

ghc-tuple 0.3.0.2
Dependencies: ghc-onetuple@0.3.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hackage.haskell.org/package/tuple
Licenses: Modified BSD
Build system: haskell
Synopsis: Various functions on tuples
Description:

Various useful functions on tuples, overloaded on tuple size.

Page: 123456
Total results: 132