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

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-intern 0.9.6
Dependencies: ghc-hashable@1.4.2.0 ghc-unordered-containers@0.2.19.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://github.com/ekmett/intern/
Licenses: Modified BSD
Build system: haskell
Synopsis: Efficient hash-consing for arbitrary data types
Description:

Efficient hash-consing for arbitrary data types.

ghc-cryptohash-sha1 0.11.101.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell-hvr/cryptohash-sha1
Licenses: Modified BSD
Build system: haskell
Synopsis: Fast, pure and practical SHA-1 implementation
Description:

This package provides a practical incremental and one-pass, pure API to the <https://en.wikipedia.org/wiki/SHA-1 SHA-1 hash algorithm> (including <https://en.wikipedia.org/wiki/HMAC HMAC> support) with performance close to the fastest implementations available in other languages. . The implementation is made in C with a haskell FFI wrapper that hides the C implementation. . NOTE: This package has been forked off @cryptohash-0.11.7@ because the @cryptohash@ package has been deprecated and so this package continues to satisfy the need for a lightweight package providing the SHA1 hash algorithm without any dependencies on packages other than @base@ and @bytestring@. . Consequently, this package can be used as a drop-in replacement for @cryptohash@'s "Crypto.Hash.SHA1" module, though with a clearly smaller footprint.

ghc-primitive 0.7.3.0
Dependencies: ghc-data-array-byte@0.1.0.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell/primitive
Licenses: Modified BSD
Build system: haskell
Synopsis: Primitive memory-related operations
Description:

This package provides various primitive memory-related operations.

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-cabal 3.14.1.1
Dependencies: ghc-cabal-syntax@3.14.1.0 ghc-unix@2.8.6.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://www.haskell.org/cabal/
Licenses: Modified BSD
Build system: haskell
Synopsis: A framework for packaging Haskell software
Description:

The Haskell Common Architecture for Building Applications and Libraries: a framework defining a common interface for authors to more easily build their Haskell applications in a portable way. . The Haskell Cabal is part of a larger infrastructure for distributing, organizing, and cataloging Haskell libraries and tools.

ghc-dirstream 1.1.0
Dependencies: ghc-system-filepath@0.4.14 ghc-system-fileio@0.3.16.4 ghc-pipes@4.3.16 ghc-pipes-safe@2.3.5
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://hackage.haskell.org/package/dirstream
Licenses: Modified BSD
Build system: haskell
Synopsis: Easily stream directory contents in constant memory
Description:

Use this library to read large directories as streams: . * Use @ListT@ to assemble recursive directory traversals while still streaming . * Use @pipes@ to read out the stream of results . * Traversals only open directory streams lazily in response to demand . * Avoid directories with insufficient permissions . This library works on both Unix and Windows.

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-gi-gio 2.0.35
Dependencies: 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 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: Gio bindings
Description:

Bindings for Gio, autogenerated by haskell-gi.

ghc-filepath 1.5.4.0
Dependencies: ghc-os-string@2.0.7
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/haskell/filepath/blob/master/README.md
Licenses: Modified BSD
Build system: haskell
Synopsis: Library for manipulating FilePaths in a cross platform way.
Description:

This package provides functionality for manipulating @FilePath@ values, and is shipped with <https://www.haskell.org/ghc/ GHC>. It provides two variants for filepaths: . 1. legacy filepaths: @type FilePath = String@ . 2. operating system abstracted filepaths (@OsPath@): internally unpinned @ShortByteString@ (platform-dependent encoding) . It is recommended to use @OsPath@ when possible, because it is more correct. . For each variant there are three main modules: . * "System.FilePath.Posix" / "System.OsPath.Posix" manipulates POSIX\/Linux style @FilePath@ values (with @\/@ as the path separator). . * "System.FilePath.Windows" / "System.OsPath.Windows" manipulates Windows style @FilePath@ values (with either @\\@ or @\/@ as the path separator, and deals with drives). . * "System.FilePath" / "System.OsPath" for dealing with current platform-specific filepaths . For more powerful string manipulation of @OsPath@, you can use the <https://hackage.haskell.org/package/os-string os-string package> (@OsPath@ is a type synonym for @OsString@). . An introduction into the new API can be found in this <https://hasufell.github.io/posts/2022-06-29-fixing-haskell-filepaths.html blog post>. Code examples for the new API can be found <https://github.com/hasufell/filepath-examples here>.

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-dbus-hslogger 0.1.0.1
Dependencies: ghc-dbus@1.2.29 ghc-hslogger@1.3.1.0 ghc-optparse-applicative@0.17.1.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/IvanMalison/dbus-hslogger#readme
Licenses: Modified BSD
Build system: haskell
Synopsis: Expose a dbus server to control hslogger
Description:

Please see the README on Github at <https://github.com/IvanMalison/dbus-hslogger#readme>

ghc-gi-xlib 2.0.14
Dependencies: ghc-haskell-gi-base@0.26.8 ghc-haskell-gi@0.26.14 ghc-haskell-gi-overloading@1.0 gobject-introspection@1.82.0 gdk-pixbuf@2.42.12 libx11@1.8.12
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: xlib bindings
Description:

Bindings for xlib, autogenerated by haskell-gi.

ghc-gi-cairo 1.0.30
Dependencies: ghc-haskell-gi-base@0.26.8 ghc-haskell-gi@0.26.14 ghc-haskell-gi-overloading@1.0 gobject-introspection@1.82.0 cairo@1.18.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: Cairo bindings
Description:

Bindings for Cairo, autogenerated by haskell-gi.

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-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-bytestring-to-vector 0.3.0.1
Dependencies: ghc-vector@0.12.3.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/sheyll/bytestring-to-vector
Licenses: Modified BSD
Build system: haskell
Synopsis: Convert between ByteString and Vector.Storable without copying
Description:
This library allows conversion between the types from @Data.ByteString@ (package @bytestring@) and @Data.Vector.Storable@ (package @vector@) without copying the underlying data. This is useful, for example, when @ByteString@ IO produces or consumes vectors of numbers in native byte order. . The conversion relies on the fact that @ByteString@ and @Vector@ use their respective @ForeignPtr@s in compatible ways. . This library is a fork of the @spool@ package written by Keegan McAllister.
ghc-gi-webkit 6.0.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: Bindings for WebKit 6.x, autogenerated by haskell-gi.
Description:

Haskell WebKit bindings.

ghc-tasty 1.5.3
Dependencies: ghc-tagged@0.8.6.1 ghc-optparse-applicative@0.17.1.0 ghc-ansi-terminal@0.11.4
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/UnkindPartition/tasty
Licenses: Expat
Build system: haskell
Synopsis: Modern and extensible testing framework
Description:

Tasty is a modern testing framework for Haskell. It lets you combine your unit tests, golden tests, QuickCheck/SmallCheck properties, and any other types of tests into a single test suite.

ghc-chs-cabal 0.1.1.4
Dependencies: ghc-chs-deps@0.1.0.0 ghc-unix@2.8.6.0
Propagated dependencies: ghc-unix@2.8.6.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/vmchale/libarchive
Licenses: Modified BSD
Build system: haskell
Synopsis: Custom Cabal setup that orders chs dependencies correctly.
Description:

Cabal with c2hs dependencies.

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-configfile 1.1.4
Dependencies: ghc-missingh@1.5.0.1
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: http://software.complete.org/configfile
Licenses: Modified BSD
Build system: haskell
Synopsis: Configuration file reading & writing
Description:

Parser and writer for handling sectioned config files in Haskell. . The ConfigFile module works with configuration files in a standard format that is easy for the user to edit, easy for the programmer to work with, yet remains powerful and flexible. It is inspired by, and compatible with, Python's ConfigParser module. It uses files that resemble Windows .INI-style files, but with numerous improvements. . ConfigFile provides simple calls to both read and write config files. It's possible to make a config file parsable by this module, the Unix shell, and make.

ghc-z-io 2.0.0.0
Dependencies: ghc-foldl@1.4.14 ghc-primitive@0.7.3.0 ghc-unix-time@0.4.9 ghc-unordered-containers@0.2.19.1 ghc-z-data@2.0.1.0
Channel: ajattix
Location: ajatt/packages/haskell.scm (ajatt packages haskell)
Home page: https://github.com/ZHaskell/Z-IO
Licenses: Modified BSD
Build system: haskell
Synopsis: Simple and high performance IO toolkit for Haskell
Description:

Simple and high performance IO toolkit for Haskell, including file system, network, ipc and more!

Page: 123456
Total results: 132