[364 total ]
Darcs is a free, open source source code management system.
Every user has access to the full command set, removing boundaries between server and client or committer and non-committers.
Darcs is easy to learn and efficient to use because it
... [More]
asks you questions in response to simple commands, giving you choices in your work flow. You can choose to record one change in a file, while ignoring another. As you update from upstream, you can review each patch name, even the full "diff" for interesting patches. [Less]
Haskell is an advanced purely functional programming language. The product of more than twenty years of cutting edge research, it allows rapid development of robust, concise, correct software. With strong support for integration with other languages
... [More]
, built-in concurrency, debuggers, profilers, rich libraries and an active community, Haskell makes it easier to produce flexible, maintainable high-quality software.
GHC is a state-of-the-art, open source, compiler and interactive environment for Haskell. [Less]
xmonad is a tiling window manager for X. Windows are arranged automatically to tile the screen without gaps or overlap, maximising screen use. All features of the window manager are accessible from the keyboard: a mouse is strictly optional. xmonad
... [More]
is written and extensible in Haskell. Custom layout algorithms, and other extensions, may be written by the user in config files. Layouts are applied dynamically, and different layouts may be used on each workspace. Xinerama is fully supported, allowing windows to be tiled on several screens. [Less]
An implementation of Perl 6 in Haskell, including the official Perl 6 test suite.
Cabal is a system for building and packaging Haskell libraries and programs. It defines a common interface for package authors and distributors to easily build their applications in a portable way.
Cabal is part of a larger infrastructure for distributing, organizing, and cataloging Haskell libraries and programs.
xmonad is a minimalistic tiling window manager for X, written and extensible in Haskell. xmonad-contrib is the library of user-contributed extension modules to xmonad, providing a large collection of new layout algorithms, utilities, hooks, and more.
A library for testing Haskell programs automatically. 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
... [More]
generated cases. Specifications are expressed in Haskell, using combinators defined in the QuickCheck library. QuickCheck provides combinators to define properties, observe the distribution of test data, and define test data generators. [Less]
A time and space-efficient implementation of byte vectors using packed Word8 arrays, suitable for high performance use, both in terms of large data quantities, or high speed requirements. Byte vectors are encoded as strict Word8 arrays of bytes, held in a ForeignPtr, and can be passed between C and Haskell with little effort.
Lambdabot is an IRC bot written over several years by those on the #haskell IRC channel. It also operates in an offline mode as a Haskell development tool, and embedded as an extension to ghci.
Hugs (Haskell User's Gofer System) (also Hugs 98) is a bytecode interpreter for the functional programming language Haskell. Hugs is the successor to Gofer, and was originally derived from Gofer version 2.30b.It offers fast compilation of programs
... [More]
and reasonable execution speed. It also comes with a simple graphics library. Hugs is good for people learning the basics of Haskell, but is by no means a "toy" implementation. It is the most portable and lightweight of the Haskell implementations.
Hugs deviates from the Haskell 98 specification[2] in several minor ways.[3] For example, Hugs does not support mutually recursive modules. The Hugs prompt accepts expressions for evaluation, but not module, type or function definitions. [Less]
The Haskell base library. Fundamental functions and data structures included with every Haskell system.
A monad transformer library, inspired by the paper Functional Programming with Overloading and
Higher-Order Polymorphism, by Mark P Jones (http://web.cecs.pdx.edu/~mpj/pubs/springschool.html),
Advanced School of Functional Programming, 1995.
Parsec is designed from scratch as an industrial-strength parser library. It is simple, safe, well documented (on the package homepage), has extensive
libraries and good error messages, and is also fast.
Compression and decompression in the gzip and zlib formats for Haskell
Efficient, pure binary serialisation using lazy ByteStrings. Haskell values may be encoded to and form binary formats, written to disk as binary, or sent over the network. Serialisation speeds of over 1 G/sec have been observed, so this library should be suitable for high performance scenarios.
a tool for automatically generating documentation from annotated Haskell source code. It is primarily intended for documenting libraries, but it should be useful for any kind of Haskell code.
Xmobar is a minimalistic text based status bar.
Inspired by the Ion3 status bar, it supports similar features, like dynamic color management, output templates, and extensibility through plugins.
Standard Haskell arrays library.
A Haskell binding for the OpenGL graphics system (GL, version 2.1) and its
accompanying utility library (GLU, version 1.3). OpenGL is the industry's most
widely used and supported 2D and 3D graphics application programming interface
(API)
... [More]
, incorporating a broad set of rendering, texture mapping, special
effects, and other powerful visualization functions. [Less]
This package gives you access to the set of operating system services standardised by POSIX 1003.1b (or the IEEE Portable Operating System Interface for Computing Environments - IEEE Std. 1003.1).
Yi is a text editor written and extensible in Haskell. The goal of Yi is to provide a flexible, powerful and correct editor core dynamically scriptable in Haskell.
Haskell interface to fastcgi.
This package provides a suite of data structures types, with a consistent API. It is intended as an
evolution of the data structures in the base package.
Happy is a parser generator system for Haskell, similar to the tool `yacc' for C. Like `yacc', it
takes a file containing an annotated BNF specification of a grammar and produces a Haskell module
containing a parser for the grammar.
Happy is
... [More]
flexible: you can have several Happy parsers in the same program, and several entry points
to a single grammar. Happy can work in conjunction with a lexical analyser supplied by the user
(either hand-written or generated by another program), or it can parse a stream of characters
directly (but this isn't practical in most cases). [Less]
C->Haskell is an interface generator that simplifies the development of Haskell bindings to C libraries. The tool processes existing C header files that determine data layout and function signatures on the C side in conjunction with Haskell modules
... [More]
that specify Haskell-side type signatures and marshaling details. Hooks embedded in the Haskell code signal access to C structures and functions -- they are expanded by the interfacing tool in dependence on information from the corresponding C header file. Another noteworthy property is the lightweight nature of the approach. The idea for the tool was developed during the implementation of Gtk+HS, a Haskell binding for the GUI toolkit GTK+. The latter is no longer under active development, but its successor, Gtk2Hs, also uses C->Haskell. [Less]
Alex is a tool for generating lexical analysers in Haskell
Gtk2Hs is a GUI library for Haskell based on Gtk+. Gtk+ is an extensive and mature multi-platform toolkit for creating graphical user interfaces.
Explicit and implicit parallel programming in Haskell, using parallel strategies and annotations.
Facilities for manipulating Haskell source code using Template Haskell.
HAppS is a framework for developing Internet services quickly, deploying them easily, scaling them massively, and managing them ziplessly. Web, persistence, mail, DNS and database servers are all built-in so you can focus on app development rather
... [More]
than integrating and babysitting lots of different servers/services (the Haskell type system keeps everything consistent). [Less]