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

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-hsyaml 0.2.1.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/haskell-hvr/HsYAML
Licenses: GPL 2+
Synopsis: Pure Haskell YAML 1.2 parser
Description:

This library provides a YAML 1.2 parser implementation for Haskell. Its features include:

  • Pure Haskell implementation with small dependency footprint and emphasis on strict compliance with the YAML 1.2 specification.

  • Direct decoding to native Haskell types via (aeson-inspired) typeclass-based API (see Data.YAML).

  • Support for constructing custom YAML node graph representation (including support for cyclic YAML data structures).

  • Support for the standard (untyped) Failsafe, (strict) JSON, and (flexible) Core ``schemas'' providing implicit typing rules as defined in the YAML 1.2 specification (including support for user-defined custom schemas).

  • Event-based API resembling LibYAML's Event-based API (see Data.YAML.Event).

  • Low-level API access to lexical token-based scanner (see Data.YAML.Token).

ghc-dependent-sum 0.7.2.0
Dependencies: ghc-constraints-extras@0.3.2.1 ghc-some@1.0.4.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/obsidiansystems/dependent-sum
Licenses: Public Domain
Synopsis: Dependent sum type
Description:

This package provides a dependent sum is a generalization of a particular way of thinking about the Either type. Either a b can be thought of as a 2-tuple (tag, value), where the value of the tag determines the type of the value. In particular, either tag = Left and value :: a or tag = Right and value :: b. This package allows you to define your own dependent sum types by using your own "tag" types.

ghc-validation 1.1.2
Dependencies: ghc-assoc@1.0.2 ghc-semigroups@0.20 ghc-semigroupoids@5.3.7 ghc-bifunctors@5.5.15 ghc-lens@5.1.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/qfpl/validation
Licenses: Modified BSD
Synopsis: Data-type like Either but with an accumulating Applicative
Description:

A data-type like Either but with differing properties and type-class instances.

Library support is provided for this different representation, including lens-related functions for converting between each and abstracting over their similarities.

The Validation data type is isomorphic to Either, but has an instance of Applicative that accumulates on the error side. That is to say, if two (or more) errors are encountered, they are appended using a Semigroup operation.

As a consequence of this Applicative instance, there is no corresponding Bind or Monad instance. Validation is an example of, "An applicative functor that is not a monad."

ghc-utility-ht 0.0.17
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://hackage.haskell.org/package/utility-ht
Licenses: Modified BSD
Synopsis: Haskell helper functions for Lists, Maybes, Tuples, Functions
Description:

This package includes Hakell modules providing various helper functions for Lists, Maybes, Tuples, Functions.

ghc-non-negative 0.1.2
Dependencies: ghc-semigroups@0.20 ghc-utility-ht@0.0.17 ghc-quickcheck@2.14.3
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://hackage.haskell.org/package/non-negative
Licenses: GPL 3+
Synopsis: Non-negative numbers class
Description:

This library provides a class for non-negative numbers, a wrapper which can turn any ordered numeric type into a member of that class, and a lazy number type for non-negative numbers (a generalization of Peano numbers).

ghc-auto-update 0.1.6
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/yesodweb/wai
Licenses: Expat
Synopsis: Efficiently run periodic, on-demand actions
Description:

This library provides mechanisms to efficiently run periodic, on-demand actions in Haskell.

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
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-intervalmap 0.6.2.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://www.chr-breitkopf.de/comp/IntervalMap
Licenses: Modified BSD
Synopsis: Containers for intervals, with efficient search
Description:

This package provides ordered containers of intervals, with efficient search for all keys containing a point or overlapping an interval. See the example code on the home page for a quick introduction.

ghc-indexed-traversable 0.1.2.1
Dependencies: ghc-generic-deriving@1.14.4
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://hackage.haskell.org/package/indexed-traversable
Licenses: FreeBSD
Synopsis: Indexed Functor, Foldable, and Traversable typeclasses
Description:

This Haskell package provides three useful generalizations:

class Functor f => FunctorWithIndex i f | f -> i where
  imap :: (i -> a -> b) -> f a -> f b
class Foldable f => FoldableWithIndex i f | f -> i where
  ifoldMap :: Monoid m => (i -> a -> m) -> f a -> m
class (FunctorWithIndex i t, FoldableWithIndex i t, Traversable t)
       => TraversableWithIndex i t | t -> i where
  itraverse :: Applicative f => (i -> a -> f b) -> t a -> f (t b)

The ghc-keys package provides similar functionality, but uses associated TypeFamilies instead of FunctionalDependencies.

ghc-conduit-zstd 0.0.2.0
Dependencies: ghc-conduit@1.3.5 ghc-zstd@0.1.3.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/luispedro/conduit-zstd#readme
Licenses: Expat
Synopsis: Conduit-based ZStd Compression
Description:

Zstandard compression packaged as a conduit. This is a very thin wrapper around the official hs-zstd interface.

ghc-hspec-wai 0.11.1
Dependencies: ghc-quickcheck@2.14.3 ghc-base-compat@0.12.2 ghc-case-insensitive@1.2.1.0 ghc-hspec-core@2.9.7 ghc-hspec-expectations@0.8.2 ghc-http-types@0.12.3 ghc-wai@3.2.3 ghc-wai-extra@3.1.13.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/hspec/hspec-wai#readme
Licenses: Expat
Synopsis: Experimental Hspec support for testing WAI applications
Description:

Experimental Hspec support for testing WAI applications

ghc-pointed 5.0.4
Dependencies: ghc-data-default-class@0.1.2.0 ghc-comonad@5.0.8 ghc-kan-extensions@5.2.5 ghc-semigroupoids@5.3.7 ghc-semigroups@0.20 ghc-tagged@0.8.6.1 ghc-transformers-compat@0.7.2 ghc-hashable@1.4.2.0 ghc-unordered-containers@0.2.19.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/ekmett/pointed/
Licenses: Modified BSD
Synopsis: Pointed and copointed data types
Description:

This Haskell library provides pointed and copointed data types.

ghc-openglraw 3.3.4.1
Dependencies: ghc-fixed@0.3 ghc-half@0.3.1 glu@9.0.2
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://www.haskell.org/haskellwiki/Opengl
Licenses: Modified BSD
Synopsis: Raw Haskell bindings for the OpenGL graphics system
Description:

OpenGLRaw is a raw Haskell binding for the OpenGL 4.5 graphics system and lots of OpenGL extensions. It is basically a 1:1 mapping of OpenGL's C API, intended as a basis for a nicer interface. OpenGLRaw offers access to all necessary functions, tokens and types plus a general facility for loading extension entries. The module hierarchy closely mirrors the naming structure of the OpenGL extensions, making it easy to find the right module to import. All API entries are loaded dynamically, so no special C header files are needed for building this package. If an API entry is not found at runtime, a userError is thrown.

ghc-irc-core 2.11
Dependencies: ghc-base64-bytestring@1.2.1.0 ghc-attoparsec@0.14.4 ghc-hashable@1.4.2.0 ghc-primitive@0.7.3.0 ghc-vector@0.12.3.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/glguy/irc-core
Licenses: ISC
Synopsis: IRC core library for glirc
Description:

This is the IRC core library for glirc. The client is available in its own glirc package.

ghc-say 0.1.0.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/fpco/say
Licenses: Expat
Synopsis: Send textual messages to a Handle in a thread-friendly way
Description:

A thread safe API to write a line of textual data to a Handle, such as sending some messages to the terminal - that has the following properties:

  • Properly handle character encoding settings on the Handle

  • For reasonably sized messages, ensure that the entire message is written in one chunk to avoid interleaving data with other threads

  • Avoid unnecessary memory allocations and copies

  • Minimize locking.

ghc-base-prelude 1.6.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/nikita-volkov/base-prelude
Licenses: Expat
Synopsis: The most complete prelude formed solely from the Haskell's base package
Description:

This Haskell package aims to reexport all the non-conflicting and most general definitions from the "base" package.

This includes APIs for applicatives, arrows, monoids, foldables, traversables, exceptions, generics, ST, MVars and STM.

This package will never have any dependencies other than "base".

Versioning policy:

The versioning policy of this package deviates from PVP in the sense that its exports in part are transitively determined by the version of "base". Therefore it's recommended for the users of ghc-base-prelude to specify the bounds of "base" as well.

ghc-hslua-module-path 1.0.3
Dependencies: ghc-hslua-core@2.2.1 ghc-hslua-marshalling@2.2.1 ghc-hslua-packaging@2.2.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://hslua.org/
Licenses: Expat
Synopsis: Lua module to work with file paths
Description:

This Haskell library provides a Lua module to work with file paths in a platform independent way.

ghc-io-streams-haproxy 1.0.1.0
Dependencies: ghc-attoparsec@0.14.4 ghc-io-streams@1.5.2.2 ghc-network@3.1.4.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: http://snapframework.com/
Licenses: Modified BSD
Synopsis: HAProxy protocol 1.5 support for io-streams
Description:

HAProxy protocol version 1.5 support (see http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt) for applications using io-streams. The proxy protocol allows information about a networked peer (like remote address and port) to be propagated through a forwarding proxy that is configured to speak this protocol.

ghc-regex-compat 0.95.2.1
Dependencies: ghc-regex-base@0.94.0.2 ghc-regex-posix@0.96.0.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://sourceforge.net/projects/lazy-regex
Licenses: Modified BSD
Synopsis: Replaces/Enhances Text.Regex
Description:

This library provides one module layer over regex-posix to replace Text.Regex.

ghc-path-io 1.7.0
Dependencies: ghc-dlist@1.0 ghc-path@0.9.2 ghc-temporary@1.3 ghc-unix-compat@0.5.4
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/mrkkrp/path-io
Licenses: Modified BSD
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-cborg-json 0.2.5.0
Dependencies: ghc-aeson@2.0.3.0 ghc-aeson-pretty@0.8.9 ghc-unordered-containers@0.2.19.1 ghc-scientific@0.3.7.0 ghc-vector@0.12.3.1 ghc-cborg@0.2.9.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/well-typed/cborg
Licenses: Modified BSD
Synopsis: Library for encoding JSON as CBOR
Description:

This package implements the bijection between JSON and CBOR defined in the CBOR specification, RFC 7049.

ghc-safesemaphore 0.10.1
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/ChrisKuklewicz/SafeSemaphore
Licenses: Modified BSD
Synopsis: Exception safe semaphores
Description:

This library provides exception safe semaphores that can be used in place of QSem, QSemN, and SampleVar, all of which are not exception safe and can be broken by killThread.

ghc-typed-process 0.2.11.0
Dependencies: ghc-async@2.2.4 ghc-unliftio-core@0.2.1.0
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/fpco/typed-process
Licenses: Expat
Synopsis: Run external processes with strong typing of streams
Description:

This library provides the ability to launch and interact with external processes. It wraps around the process library, and intends to improve upon it.

ghc-tuple-th 0.2.5
Channel: guix
Location: gnu/packages/haskell-xyz.scm (gnu packages haskell-xyz)
Home page: https://github.com/DanielSchuessler/tuple-th
Licenses: Modified BSD
Synopsis: Generate utility functions for tuples of statically known size for Haskell
Description:

This Haskell package contains Template Haskell functions for generating functions similar to those in Data.List for tuples of statically known size.

Page: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296
Total results: 31092