Ecosyste.ms: Funds
An open API service for providing issue and pull request metadata for open source projects.
Haskell
Fund for the most critical haskell packages on hackage.haskell.org
Allocations
2024-09
$10000.0
Funded Projects
https://github.com/snoyberg/http-client
An HTTP client engine, intended as a base layer for more user-friendly packages.
haskell http-client http-conduit
Released: 04 Oct 2013 - 272
https://github.com/jtdaugherty/vty
A high-level ncurses alternative written in Haskell
haskell tui ui
Released: 16 Mar 2011 - 321
https://github.com/ekmett/wl-pprint-extras
A free monad based on the Wadler/Leijen pretty printer
Released: 03 Aug 2011 - 8
https://github.com/jgm/texmath
A Haskell library for converting LaTeX math to MathML.
Released: 01 Jul 2009 - 299
https://github.com/patperry/hs-ieee754
Approximate comparisons for IEEE floating point numbers in Haskell
Released: 31 Dec 2008 - 10
https://github.com/jtdaugherty/brick
A declarative Unix terminal UI library written in Haskell
curses framework haskell terminal tui ui vty
Released: 09 May 2015 - 1,568
https://github.com/haskell/attoparsec
A fast Haskell library for parsing ByteStrings
Released: 10 Oct 2010 - 510
https://github.com/bitemyapp/esqueleto
New home of Esqueleto, please file issues so we can get things caught up!
Released: 14 Dec 2016 - 372
https://github.com/xmonad/X11
A Haskell binding to the X11 graphics library.
hacktoberfest haskell x11 xmonad
Released: 18 Nov 2011 - 104
https://github.com/haskell/mtl
The Monad Transformer Library
haskell monad monad-transformers
Released: 25 Jan 2012 - 353
https://github.com/haskell/text
Haskell library for space- and time-efficient operations over Unicode text.
haskell string string-manipulation text unicode utf8
Released: 20 Oct 2010 - 395
https://github.com/visq/language-c
Source repository for https://hackage.haskell.org/package/language-c
Released: 14 Apr 2014 - 81
https://github.com/fpco/unliftio
The MonadUnliftIO typeclass for unlifting monads to IO
Released: 12 Jul 2017 - 150
https://github.com/brendanhay/amazonka
A comprehensive Amazon Web Services SDK for Haskell.
aws haskell
Released: 03 Aug 2013 - 587
https://github.com/quchen/prettyprinter
A modern, extensible and well-documented prettyprinter.
haskell prettyprinter
Released: 17 May 2017 - 293
https://github.com/s9gf4ult/quickcheck-assertions
Library with convenient assertions for QuickCheck properties like in HUnit
Released: 27 Feb 2013 - 2
https://github.com/DanBurton/tardis
A Tardis is a combination of both a forwards and a backwards state transformer, providing two state values that "travel" in opposite directions. A detailed description of what a Tardis is and how to use it can be found in the documentation for Control.Monad.Tardis.
Released: 18 Jun 2012 - 106
https://github.com/haskell/vector
An efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework .
Released: 24 Sep 2013 - 360
https://github.com/haskell/test-framework
Framework for running and organising QuickCheck test properties and HUnit test cases
haskell testing
Released: 08 Oct 2013 - 25
https://github.com/haskell-numerics/hmatrix
Linear algebra and numerical computation
Released: 07 Dec 2011 - 378
https://github.com/typeclasses/options
Powerful and easy command-line option parser
command-line-parser haskell haskell-library
Released: 11 Jul 2023 - 4
https://github.com/haskell-hvr/hslogger
Logging framework for Haskell
haskell logging logging-library
Released: 22 Apr 2010 - 64
https://github.com/haskell-pkg-janitors/unix-compat
Haskell portable POSIX-compatibility layer
Released: 15 Mar 2023 - 3
https://github.com/typeclasses/monads-tf
Monad classes, using type families
haskell haskell-library monad-transformers type-families
Released: 10 Jul 2023 - 1
https://github.com/UnkindPartition/tasty
Modern and extensible testing framework for Haskell
golden-tests haskell hunit quickcheck smallcheck testing unit-testing
Released: 22 Apr 2013 - 637
https://github.com/scotty-web/scotty
Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp (Official Repository)
rest rest-api web-framework
Released: 30 Dec 2011 - 1,716
https://github.com/haskell/bytestring
An efficient compact, immutable byte string type (both strict and lazy) suitable for binary or 8-bit character data.
Released: 15 Feb 2013 - 282
https://github.com/spl/dlist
Difference lists in Haskell
data-structures difference-lists haskell
Released: 12 Nov 2013 - 65
https://github.com/HeinrichApfelmus/operational
Implement monads by specifying instructions and their desired operational semantics.
free-monad haskell monad
Released: 27 Aug 2011 - 79
https://github.com/PeterScott/pwstore
Securely store hashed, salted passwords
Released: 06 Feb 2011 - 19
https://github.com/snoyberg/basic-prelude
An enhanced core prelude, meant for building up more complete preludes on top of.
Released: 08 Aug 2012 - 49
https://github.com/blaze-builder/blaze-builder
Home of the Haskell package `blaze-builder`
Released: 18 Oct 2021 - 0
https://github.com/AccelerateHS/accelerate
Embedded language for high-performance array computations
accelerate cuda gpu gpu-computing hacktoberfest haskell llvm parallel-computing
Released: 08 Apr 2011 - 895
https://github.com/ekmett/semigroupoids
Provides a wide array of (semi)groupoids and operations for working with them. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. A Category is any Semigroupoid for which the Yoneda lemma holds. When working with comonads you often have the <*> portion of an Applicative, but not the pure. This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative. Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails, but do not always contain a value. We describe the relationships between the type classes defined in this package and those from base (and some from contravariant) in the diagram below. Thick-bordered nodes correspond to type classes defined in this package; thin-bordered ones correspond to type classes from elsewhere. Solid edges indicate a subclass relationship that actually exists; dashed edges indicate a subclass relationship that should exist, but currently doesn't.
Released: 30 Jan 2011 - 75
https://github.com/paul-rouse/mysql
A lightweight Haskell binding to the C mysqlclient API
Released: 28 Apr 2011 - 37
https://github.com/ekmett/reducers
Semigroups, specialized containers and a general map/reduce framework
Released: 04 Aug 2011 - 46
https://github.com/23Skidoo/raw-strings-qq
Raw string literals for Haskell.
Released: 04 Apr 2013 - 24
https://github.com/nick8325/quickcheck
Automatic testing of Haskell programs.
Released: 28 Jul 2012 - 691
https://github.com/bitemyapp/bloodhound
Haskell Elasticsearch client and query DSL
Released: 01 Apr 2014 - 419
https://github.com/ekmett/concurrent-supply
A fast globally unique variable supply with a pure API
Released: 08 Nov 2011 - 17
https://github.com/blamario/incremental-parser
Haskell parsing combinator liibrary that can be fed the input and emit the parsed output incrementally
Released: 27 Nov 2015 - 21
https://github.com/haskell/entropy
Easy entropy source for Haskell users.
Released: 12 May 2013 - 23
https://github.com/haskell/haskeline
A Haskell library for line input in command-line programs.
Released: 31 Oct 2013 - 222
https://github.com/snoyberg/mono-traversable
Type classes for mapping, folding, and traversing monomorphic containers
Released: 09 Sep 2013 - 151
https://github.com/Soostone/katip
A structured logging framework for Haskell
Released: 28 May 2015 - 201
https://github.com/fpco/optparse-simple
Simple helper functions to work with optparse-applicative
Released: 06 Apr 2015 - 29
https://github.com/basvandijk/scientific
Arbitrary-precision floating-point numbers represented using scientific notation
haskell numbers scientific-notation
Released: 22 Oct 2013 - 73
https://github.com/well-typed/cborg
Binary serialisation in the CBOR format
haskell
Released: 06 Jul 2015 - 188
https://github.com/haskell/terminfo
Haskell bindings to the terminfo API.
Released: 31 Oct 2013 - 10
https://github.com/hackage-trustees/text-format
A Haskell text formatting library optimized for ease of use and high performance.
Released: 23 Jul 2018 - 0
https://github.com/fumieval/thyme
thyme is a performance-optimized rewrite of the excellent time library. See Data.Thyme.Docs for a full description.
Released: 20 Feb 2023 - 1
https://github.com/ozataman/csv-conduit
Flexible, fast and constant-space CSV library for Haskell using conduits
Released: 06 Apr 2012 - 51
https://github.com/UnkindPartition/data-lens-light
Simple lenses, minimum dependencies
Released: 28 Apr 2014 - 14
https://github.com/k0001/network-simple
Haskell library abstracting common network sockets usage patterns.
Released: 04 Apr 2013 - 33
https://github.com/cartazio/storable-complex
This is the maintenance repo for storable complex
Released: 01 Jan 2015 - 2
https://github.com/nomeata/tasty-expected-failure
Mark test cases as expected-failure
Released: 08 Sep 2015 - 21
https://github.com/yesodweb/yesod
A RESTful Haskell web framework built on WAI.
Released: 27 Jun 2009 - 2,627
https://github.com/esoeylemez/foreign-store
Store a stable pointer in a foreign context to be retrieved later. Persists through GHCi reloads.
Released: 03 Mar 2014 - 29
https://gitlab.com/daniel-casanueva/haskell
Haskell bindings to the Graphviz toolkit
Released: 30 Apr 2015 - 64
https://github.com/sol/doctest
An implementation of Python's doctest for Haskell
Released: 04 Nov 2010 - 371
https://github.com/sebastiaanvisser/fclabels
First class composable record labels for Haskell.
Released: 07 Aug 2009 - 66
https://github.com/gregorycollins/hashtables
Mutable hash tables for Haskell, in the ST monad
Released: 11 Jun 2011 - 125
https://github.com/informatikr/hedis
A Redis client library for Haskell.
Released: 23 Feb 2011 - 330
https://github.com/mrkkrp/parser-combinators
Lightweight package providing commonly useful parser combinators
haskell parser-combinators parsing
Released: 13 Jun 2017 - 52
https://github.com/hspec/silently
Prevent or capture output to stdout or other handles in Haskell
Released: 21 Jul 2015 - 19
https://github.com/soenkehahn/string-conversions
Simplifies dealing with different types for strings
Released: 30 Sep 2014 - 26
https://github.com/jgm/zip-archive
Native Haskell library for working with zip archives
Released: 08 Dec 2010 - 45
https://github.com/rethab/bindings-dsl
Library and macros to simplify writing Haskell FFI code
Released: 12 Jan 2014 - 38
https://github.com/ekmett/bytes
Serialization primitives that work with both cereal and binary.
Released: 28 Mar 2013 - 22
https://github.com/haskell-checkers/checkers
Check properties on standard classes and data structures
Released: 03 Jan 2013 - 79
https://github.com/basvandijk/concurrent-extra
Extra concurrency primitives
concurrency haskell
Released: 17 Apr 2011 - 17
https://github.com/timbod7/haskell-chart
A 2D charting library for haskell
Released: 18 Mar 2013 - 423
https://github.com/snoyberg/file-embed
Use Template Haskell to embed file contents directly.
Released: 23 Jul 2009 - 90
https://github.com/andreasabel/ini
Quick and easy INI configuration files for Haskell
configuration haskell ini-parser
Released: 16 Apr 2022 - 0
https://github.com/ekmett/linear
Low-dimensional linear algebra primitives for Haskell.
Released: 02 Jun 2011 - 195
https://github.com/paul-rouse/mysql-simple
A mid-level client library for the MySQL database, intended to be fast and easy to use.
Released: 29 Apr 2011 - 91
https://github.com/nikita-volkov/neat-interpolation
A quasiquoter for neat and simple multiline text interpolation
Released: 14 Mar 2013 - 54