nixpkgs/pkgs/development/libraries/haskell
Peter Simons fd0f9e6fc1 Re-write the Haskell Platform out of haskell-defaults.nix.
1) Packages formerly called haskell-haskell-platform-ghcXYZ-VVVV.X.Y.Z are
    now called haskell-platform-VVVV.X.Y.Z. The latest version can be
    installed by running "nix-env -i haskell-platform".

 2) The attributes haskellPackages_ghcXYZ.haskellPlatform no longer exist.
    Instead, we have attributes like haskellPlatformPackages."2012_4_0_0".
    (The last numeric bit must be quoted when used in a Nix file, but not on
    the command line to nix-env, nix-build, etc.) The latest Platform has a
    top-level alias called simply haskellPlatform.

 3) The haskellPackages_ghcXYZ package sets offer the latest version of every
    library that GHC x.y.z can compile. For example, if 2.7 is the latest
    version of QuickCheck and if GHC 7.0.4 can compile that version, then
    haskellPackages_ghc704.QuickCheck refers to version 2.7.

 4) All intermediate GHC releases were dropped from all-packages.nix to
    simplify our configuration. What remains is a haskellPackages_ghcXYZ set
    for the latest version of every major release branch, i.e. GHC 6.10.4,
    6.12.3, 7.0.4, 7.2.2, 7.4.2, 7.6.3, 7.8.2, and 7.9.x (HEAD snapshot).

 5) The ghcXYZPrefs functions in haskell-defaults.nix now inherit overrides
    from newer to older compilers, i.e. an override configured for GHC 7.0.4
    will automatically apply to GHC 6.12.3 and 6.10.4, too. This change has
    reduced the redundancy in those configuration functions. The downside is
    that overriding an attribute for only one particular GHC version has become
    more difficult. In practice, this case doesn't occur much, though.

 6) The 'cabal' builder has a brand-new argument called 'extension'. That
    function is "self : super : {}" by default and users can override it to
    mess with the attribute set passed to cabal.mkDerivation. An example use
    would be the definition of darcs in all-packages.nix:

    | darcs = haskellPackages.darcs.override {
    |   cabal = haskellPackages.cabal.override {
    |     extension = self : super : {
    |       isLibrary = false;
    |       configureFlags = "-f-library " + super.configureFlags or "";
    |     };
    |   };
    | };

    In this case, extension disables building the library part of the package
    to give us an executable-only version that has no dependencies on GHC or
    any other Haskell packages.

    The 'self' argument refers to the final version of the attribute set and
    'super' refers to the original attribute set.

Note that ...

 - Haskell Platform packages always provide the Haddock binary that came with
   the compiler.

 - Haskell Platform 2009.2.0.2 is broken because of build failures in cgi and
   cabal-install.

 - Haskell Platform 2010.1.0.0 is broken becasue of build failures in cgi.
2014-05-14 14:59:52 +02:00
..
abstract-deque haskell-abstract-deque: update to version 0.3 2014-02-05 20:40:24 +01:00
abstract-deque-tests haskell-abstract-deque-tests: add version 0.3 2014-02-05 20:40:24 +01:00
abstract-par haskell-abstract-par: update to version 0.3.3 2013-11-11 14:39:54 +01:00
AC-Vector
accelerate haskell-accelerate: update to version 0.14.0.0 2013-11-26 21:09:19 +01:00
accelerate-cuda Re-generate cuda-related expressions with recent version of cabal2nix. 2013-12-02 20:28:20 +01:00
accelerate-examples Re-generate cuda-related expressions with recent version of cabal2nix. 2013-12-02 20:28:20 +01:00
accelerate-fft Re-generate cuda-related expressions with recent version of cabal2nix. 2013-12-02 20:28:20 +01:00
accelerate-io haskell-accelerate-io: update to version 0.14.0.0 2013-11-26 21:09:19 +01:00
acid-state acid-state: Update to 0.12.1 2013-10-02 18:51:31 +02:00
active haskell-active: update to version 0.1.0.13 2014-04-29 01:35:45 +02:00
adjunctions haskell-adjunctions: update to version 4.0.3 2014-03-27 13:12:52 +01:00
aes Added Haskell AES package 2014-03-13 14:23:34 -06:00
aeson haskell-aeson: update to version 0.7.0.3 2014-04-23 11:17:08 +02:00
aeson-pretty haskell-aeson-pretty: update to version 0.7.1 2014-01-06 16:34:53 +01:00
alsa-core Fix a lots of evaluation errors on Hydra. 2013-12-10 23:20:23 +01:00
alsa-mixer haskell-alsa-mixer: update to version 0.2.0.2 2014-04-23 11:17:08 +02:00
alsa-pcm haskell-alsa-pcm: update to version 0.6.0.2 2014-04-23 11:17:08 +02:00
alternative-io
amqp haskell-amqp: update to version 0.8.2 2014-03-11 13:50:48 +01:00
annotated-wl-pprint Add annotated-wl-pprint haskellPackage 2014-01-30 09:54:54 -05:00
ansi-terminal haskell-ansi-terminal: update to version 0.6.1.1 2014-02-05 20:40:25 +01:00
ansi-wl-pprint haskell-ansi-wl-pprint: update to version 0.6.7.1 2013-12-29 12:26:05 +01:00
appar
ariadne haskellPackages.ariadne: New expression and related dependencies 2013-11-21 10:28:56 +01:00
arithmoi haskell-arithmoi: update to version 0.4.1.0 2014-05-03 10:53:21 +02:00
arrows
asn1-data
asn1-encoding haskell-asn1-encoding: update to version 0.8.1.3 2014-02-25 00:25:28 +01:00
asn1-parse Add newly required Haskell packages. 2014-01-28 14:59:46 +01:00
asn1-types haskell-asn1-types: update to version 0.2.3 2013-12-29 12:26:07 +01:00
AspectAG
assert-failure haskell-assert-failure: update to version 0.1.1.0 2014-03-03 22:12:27 +01:00
async async-2.0.1.3: jailbreak (see http://hydra.nixos.org/build/10766630/nixlog/1/raw) 2014-05-04 22:00:08 +02:00
atomic-primops haskell-atomic-primops: update to version 0.6.0.5 2014-04-23 11:17:08 +02:00
attempt haskell-attempt: update to version 0.4.0.1 2014-03-27 23:23:20 +01:00
atto-lisp haskell-atto-lisp: update to version 0.2.1.2 2014-01-26 00:02:34 +01:00
attoparsec haskell-attoparsec: update to version 0.11.3.0 2014-05-03 20:03:32 +02:00
attoparsec-binary
attoparsec-conduit haskell-attoparsec-conduit: there is no code in this module to generate documentation for 2014-04-06 21:54:45 +02:00
attoparsec-enumerator haskell-attoparsec-enumerator: update to version 0.3.2 2014-01-17 11:59:16 +01:00
authenticate haskell-authenticate: update to version 1.3.2.8 2014-03-31 21:39:24 +02:00
authenticate-oauth haskellPackages.twitterConduit: New expression 2014-04-03 14:25:37 +01:00
aws haskell-aws: update to version 0.9 2014-04-11 09:53:14 +02:00
base16-bytestring haskell-base16-bytestring: update to version 0.1.1.6 2014-01-20 18:28:02 +01:00
base64-bytestring
base64-conduit haskell-base64-conduit: update to version 1.0.0.1 2014-03-22 09:04:46 +01:00
base64-string
base-compat Update haskell-base-compat to version 0.5.0 2014-04-28 04:58:12 -05:00
base-unicode-symbols
basic-prelude haskell-basic-prelude: update to version 0.3.8 2014-04-06 21:53:17 +02:00
benchpress
bert haskellPackages.bert: Update to 1.2.2.2 2014-04-12 16:06:35 +01:00
bifunctors haskell-bifunctors: update to version 4.1.1.1 2014-04-29 01:35:45 +02:00
bimap
binary Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
binary-conduit haskell-binary-conduit: update to version 1.2.1.1 2014-04-11 09:53:14 +02:00
binary-shared
bindings-DSL haskell-bindings-DSL: update to version 1.0.21 2014-02-05 20:40:25 +01:00
bindings-libusb Add usb haskell package 2013-10-11 09:39:16 +02:00
bindings-posix
bitarray
bitmap
bits-atomic
bktrees
blaze-builder haskell-blaze-builder: update to version 0.3.3.2 2013-12-10 20:41:40 +01:00
blaze-builder-conduit haskell-blaze-builder-conduit: there is no code in this module to generate documentation for 2014-04-06 21:54:03 +02:00
blaze-builder-enumerator
blaze-html haskell-blaze-html: update to version 0.7.0.2 2014-05-01 21:57:03 +02:00
blaze-markup haskell-blaze-markup: update to version 0.6.1.0 2014-04-29 01:35:45 +02:00
blaze-svg haskell-blaze-svg: update to version 0.3.3.1 2014-02-05 20:40:25 +01:00
blaze-textual haskell-blaze-textual: update to version 0.2.0.9 2014-03-08 11:27:30 +01:00
bloomfilter
bmp Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
Boolean haskell-Boolean: update to version 0.2.1 2014-03-11 13:50:47 +01:00
boomerang haskell-boomerang: update to version 1.4.2 2014-02-02 22:36:11 +01:00
brainfuck
bson haskell-bson: update to version 0.2.4 2014-03-13 11:45:05 +01:00
bv Derivation for the Haskell library, "bv". 2014-04-26 16:17:04 +08:00
byteable
bytedump
byteorder
bytestring-lexing haskell-bytestring-lexing: update to version 0.4.3.2 2014-03-31 21:39:26 +02:00
bytestring-mmap
bytestring-nums
bytestring-progress Re-generate some Haskell expressions with cabal2nix. 2014-01-25 16:48:29 +01:00
bytestring-show haskell-bytestring-show: update to version 0.3.5.6 2014-04-02 18:17:02 +02:00
bytestring-trie
bzlib haskellPackages.bzlib: New expression 2014-04-15 10:43:38 +02:00
c2hs haskell-c2hs: update to version 0.17.2 2014-04-29 01:35:45 +02:00
c2hsc Add c2hsc to haskell-packages.nix 2014-04-11 10:34:56 -05:00
Cabal Add expression for cabal-install 1.20.0.0 2014-04-20 14:04:41 -05:00
cabal-file-th
cabal-lenses haskell-cabal-lenses: add version 0.1 2014-05-05 10:46:39 +02:00
cabal-macosx haskell-cabal-macosx: update to version 0.2.3 2013-09-22 13:25:08 +02:00
cairo haskell-cairo: update to version 0.12.5.3 2014-03-03 22:12:27 +01:00
carray
case-insensitive haskell-case-insensitive-1.0.0.1: jailbreak 2014-05-04 22:40:00 +02:00
cassava haskell-cassava: update to version 0.4.0.0 2014-05-01 21:57:03 +02:00
cautious-file
CC-delcont Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
cereal haskell-cereal: update to version 0.4.0.1 2013-11-11 14:39:58 +01:00
cereal-conduit haskell-cereal-conduit: update to version 0.7.2.2 2014-04-29 01:35:45 +02:00
certificate haskell-certificate: update to version 1.3.9 2013-10-10 20:56:34 +02:00
cgi haskell-cgi: update to version 3001.1.8.5 2014-02-10 20:54:52 +01:00
charset haskell-charset: update to version 0.3.7 2014-02-18 19:56:13 +01:00
Chart haskell-Chart: update to version 1.2.2 2014-04-08 21:37:58 +02:00
Chart-cairo haskell-Chart-cairo: update to version 1.2.2 2014-04-08 21:37:57 +02:00
Chart-diagrams haskell-Chart-diagrams: update to version 1.2.2 2014-04-08 21:37:57 +02:00
Chart-gtk haskell-Chart-gtk: update to version 1.2.2 2014-04-08 21:37:57 +02:00
ChasingBottoms haskell-ChasingBottoms: update to version 1.3.0.7 2013-10-18 12:52:27 +02:00
cheapskate add haskell-cheapskate-0.1.0.1 (markdown processor) 2014-04-06 11:47:45 +02:00
checkers haskell-checkers: update to version 0.3.2 2014-04-06 21:53:18 +02:00
chell haskell-chell: add version 0.3.3 2014-03-17 18:33:54 +01:00
chell-quickcheck haskell-chell-quickcheck: update to version 0.2.3 2014-04-23 11:17:08 +02:00
chunked-data haskell-chunked-data: update to version 0.1.0.1 2014-03-22 09:04:46 +01:00
cipher-aes haskell-cipher-aes: update to version 0.2.7 2014-03-17 18:33:54 +01:00
cipher-aes128 haskell-cipher-aes128: update to version 0.6.4 2014-01-26 00:02:34 +01:00
cipher-blowfish haskell-cipher-blowfish: update to version 0.0.3 2013-10-10 20:56:34 +02:00
cipher-camellia haskell-cipher-camellia: update to version 0.0.2 2013-10-10 20:56:34 +02:00
cipher-des haskell-cipher-des: update to version 0.0.6 2013-10-27 19:07:14 +01:00
cipher-rc4 haskell-cipher-rc4: update to version 0.1.4 2013-10-10 20:56:34 +02:00
circle-packing haskell-circle-packing: update to version 0.1.0.3 2013-12-23 22:30:43 +01:00
citeproc-hs haskell-citeproc-hs: update to version 0.3.9 2013-10-10 20:56:35 +02:00
classy-prelude haskell-classy-prelude: update to version 0.9.1 2014-05-03 10:53:22 +02:00
classy-prelude-conduit haskell-classy-prelude-conduit: update to version 0.9.1 2014-05-03 10:53:22 +02:00
clientsession haskell-clientsession: update to version 0.9.0.3 2013-09-02 14:05:22 +02:00
clock haskell-clock: add version 0.4.0.1 2013-10-19 12:43:56 +02:00
cmdargs haskell-cmdargs: update to version 0.10.7 2013-12-10 20:41:40 +01:00
cmdlib
cmdtheline haskell-cmdtheline: add version 0.2.3 2013-09-06 23:35:11 +02:00
codec-image-devil haskell-codec-image-devil: re-generate with cabal2nix 2013-12-02 20:28:20 +01:00
colorize-haskell
colour
comonad haskell-comonad: update to version 4.2 2014-05-07 19:13:05 +02:00
comonad-transformers haskellPackages.comonadTransformers: Do not build haddocks 2013-10-18 12:27:16 +01:00
comonads-fd haskell-comonads-fd: don't try to build documentation; this package is empty 2013-10-15 11:59:11 +02:00
compact-string-fix
composition Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
concatenative
concreteTyperep New expressions: yi, yi contrib and dependencies 2014-01-08 19:11:33 +01:00
concurrent-extra haskell-concurrent-extra: update to version 0.7.0.7 2014-05-07 19:13:05 +02:00
cond Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
conduit haskell-conduit: update to version 1.1.2.1 2014-05-07 19:13:05 +02:00
conduit-combinators Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
conduit-extra haskell-conduit-extra: update to version 1.1.0.3 2014-05-03 10:53:22 +02:00
ConfigFile
configurator
connection haskell-connection: update to version 0.2.1 2014-04-23 11:17:08 +02:00
constraints haskell-constraints: update to version 0.3.5 2014-03-17 18:33:54 +01:00
continued-fractions
contravariant haskell-contravariant: update to version 0.5.2 2014-05-07 19:13:04 +02:00
control-monad-free haskell-control-monad-free: add version 0.5.3 2014-03-03 22:12:28 +01:00
control-monad-loop haskell-control-monad-loop: add version 0.1 2013-11-11 14:39:59 +01:00
converge
convertible The timeparsers library requires convertible == 1.0.* 2014-04-16 13:09:31 -05:00
cookie haskell-cookie: update to version 0.4.1.1 2014-04-23 11:17:08 +02:00
coroutine-object haskell-coroutine-object: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
CouchDB haskell-CouchDB: re-generate with cabal2nix 2014-01-30 08:28:08 +01:00
cprng-aes haskell-cprng-aes: update to version 0.5.2 2013-09-08 22:56:25 +02:00
cpu haskell-cpu: update to version 0.1.2 2013-11-13 15:12:29 +01:00
criterion haskell-criterion: update to version 0.8.1.0 2014-05-07 19:13:05 +02:00
Crypto
crypto-api haskell-crypto-api: update to version 0.13 2014-01-06 12:09:58 +01:00
crypto-cipher-tests haskell-crypto-cipher-tests: update to version 0.0.11 2013-10-27 19:07:14 +01:00
crypto-cipher-types haskell-crypto-cipher-types: update to version 0.0.9 2013-10-27 19:07:14 +01:00
crypto-conduit haskell-crypto-conduit: update to version 0.5.3 2014-04-07 17:06:34 +02:00
crypto-numbers haskell-crypto-numbers: update to version 0.2.3 2013-11-13 15:12:29 +01:00
crypto-pubkey haskell-crypto-pubkey: update to version 0.2.4 2013-12-29 12:26:04 +01:00
crypto-pubkey-types haskell-crypto-pubkey-types: update to version 0.4.2.2 2014-03-03 22:12:27 +01:00
crypto-random haskell-crypto-random: update to version 0.0.7 2013-09-08 22:56:26 +02:00
crypto-random-api
cryptocipher haskell-cryptocipher: update to version 0.6.2 2013-10-27 19:07:14 +01:00
cryptohash haskell-cryptohash: update to version 0.11.4 2014-03-27 23:23:21 +01:00
cryptohash-conduit haskell-cryptohash-conduit: update to version 0.1.1 2014-03-31 21:39:24 +02:00
cryptohash-cryptoapi haskell-cryptohash-cryptoapi: update to version 0.1.3 2014-04-07 17:06:35 +02:00
css-text haskell-css-text: update to version 0.1.2.1 2014-03-22 09:04:42 +01:00
csv
cuda haskell-cuda: update to version 0.6.0.0 2014-04-29 01:35:46 +02:00
cufft haskell-cufft: the license doesn't allow this package to be built on Hydra 2013-12-21 00:11:38 +01:00
curl
data-accessor haskell-data-accessor: update to version 0.2.2.5 2014-03-17 18:33:54 +01:00
data-binary-ieee754
data-default
data-default-class
data-default-instances-base
data-default-instances-containers
data-default-instances-dlist
data-default-instances-old-locale
data-hash add haskell-data-hash-0.2.0.0 2014-04-06 11:47:46 +02:00
data-inttrie
data-lens haskell-data-lens: update to version 2.10.4 2013-10-27 19:07:15 +01:00
data-lens-template haskell-data-lens-template: update to version 2.1.8 2014-03-27 13:12:52 +01:00
data-memocombinators haskell-data-memocombinators: update to version 0.5.1 2013-12-14 15:19:28 +01:00
data-ordlist haskell-data-ordlist: update to version 0.4.6.1 2014-04-29 01:35:46 +02:00
data-pprint haskell-data-pprint: jailbreak to support GHC 7.7 or later 2013-12-03 22:52:05 +01:00
data-reify
dataenc haskell-dataenc: update to version 0.14.0.7 2014-04-29 01:35:46 +02:00
date-cache
datetime haskell-datetime: cosmetic 2013-10-18 12:52:26 +02:00
DAV haskell-DAV: update to version 0.6.2 2014-04-07 17:06:34 +02:00
dbmigrations haskell-dbmigrations: update to version 0.7 2014-03-22 09:04:45 +01:00
dbus haskell-dbus: disable test suite 2014-03-17 18:33:55 +01:00
deepseq haskell-deepseq: update to 1.3.0.1 2013-11-11 14:39:57 +01:00
deepseq-th
dependent-map haskell-dependent-map: update to version 0.1.1.2 2014-03-08 11:27:41 +01:00
dependent-sum haskell-dependent-sum: update to version 0.2.0.2 2014-03-08 11:27:41 +01:00
dependent-sum-template
derive haskell-derive: update to version 2.5.16 2014-05-07 19:13:05 +02:00
derp
diagrams haskell-diagrams-postscript: update to version 1.0.2.4 2014-04-11 22:33:12 +02:00
dice
diff3 haskellPackages.diff3: New expression 2014-02-09 12:27:41 +00:00
Diff
digest
digestive-functors haskell-digestive-functors: update to version 0.7.1.0 2014-03-31 21:39:26 +02:00
digestive-functors-aeson haskellPackages.digestiveFunctorsAeson: Update to 1.1.7 2014-04-16 16:39:12 +01:00
digestive-functors-heist haskell-digestive-functors-heist: update to version 0.8.5.0 2014-03-08 11:27:30 +01:00
digestive-functors-snap haskell-digestive-functors-snap: update to version 0.6.1.0 2014-01-26 00:02:34 +01:00
digits haskellPackages.digits: New expression 2013-11-20 09:10:54 +00:00
dimensional haskell-dimensional: update to version 0.13 2014-02-13 10:57:48 +01:00
dimensional-tf haskell-dimensional-tf: update to version 0.3 2014-02-13 10:57:46 +01:00
direct-sqlite haskell-direct-sqlite: update to version 2.3.13 2014-04-29 01:35:46 +02:00
directory-tree
distributed-static
distributive haskell-distributive: update to version 0.4.4 2014-05-07 19:13:04 +02:00
djinn Add an expression for the Haskell library djinn 2014-05-05 19:48:50 -05:00
dlist haskell-dlist: update to version 0.7.0.1 2014-03-27 13:12:52 +01:00
dlist-instances haskell-dlist-instances: add version 0.1 2014-03-22 09:04:42 +01:00
dns haskell-dns: update to version 1.2.2 2014-04-23 11:17:08 +02:00
doctest haskell-doctest: update to version 0.9.11 2014-03-27 13:12:52 +01:00
doctest-prop Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
dotgen haskell-dotgen: cosmetic 2013-10-18 12:52:26 +02:00
double-conversion
download
download-curl haskell-download-curl: jailbreak to fix build with recent versions of tagsoup 2014-05-04 12:53:45 +02:00
DRBG haskell-DRBG: update to version 0.5.2 2014-01-06 12:09:55 +01:00
DSH
dsp haskell-dsp: update to version 0.2.3 2014-03-22 09:04:42 +01:00
dstring
dual-tree haskell-dual-tree: update to version 0.2.0.2 2014-04-11 22:33:11 +02:00
dynamic-cabal haskell-dynamic-cabal: new expression 2014-05-09 22:50:41 +02:00
dyre haskell-dyre: update to version 0.8.12 2014-04-08 21:37:58 +02:00
edit-distance
editline
either haskell-either: update to version 4.1.1 2014-02-10 20:54:53 +01:00
EitherT haskellPackages.ariadne: New expression and related dependencies 2013-11-21 10:28:56 +01:00
ekg haskell: bump ekg to 0.4, add ekg-core 2014-05-03 17:36:03 +03:00
ekg-core haskell: bump ekg to 0.4, add ekg-core 2014-05-03 17:36:03 +03:00
elerea
email-validate haskell-email-validate: update to version 2.0.1 2014-02-02 22:36:11 +01:00
enclosed-exceptions haskell-enclosed-exceptions: add version 1.0.0.1 2014-02-17 16:41:08 +01:00
encoding haskell-encoding: update to version 0.7 2014-01-17 11:59:16 +01:00
entropy haskell-entropy: update to version 0.2.2.4 2013-10-18 12:52:27 +02:00
enumerator haskell-enumerator: update to version 0.4.20 2013-10-14 08:43:33 +02:00
enummapset haskell-enummapset: add version 0.5.2.0 2013-09-22 13:25:08 +02:00
enummapset-th haskell-enummapset-th: update to version 0.6.0.1 2013-12-16 21:11:30 +01:00
enumset haskell-enumset: re-generate with cabal2nix 2014-04-28 19:04:10 +02:00
erf
errorcall-eq-instance haskell-errorcall-eq-instance: add version 0.1.0 2013-12-10 20:41:36 +01:00
errors haskell-errors: update to version 1.4.6 2014-03-22 09:04:46 +01:00
esqueleto haskell-esqueleto: update to version 1.4 2014-04-29 01:35:46 +02:00
event-list add haskellPackages.eventList 2013-12-23 10:25:05 +01:00
ex-pool haskellPackages.exPool: New expression 2013-12-09 23:32:00 +00:00
exception-mtl
exception-transformers
exceptions haskell-exceptions: update to version 0.5 2014-04-06 21:54:02 +02:00
executable-path
explicit-exception haskell-explicit-exception: update to version 0.1.7.2 2014-04-23 11:17:08 +02:00
extensible-effects haskell-extensible-effects: update to version 1.6.0 2014-04-29 01:35:46 +02:00
extensible-exceptions
Extra haskellPackages.Extra: New expression 2014-04-15 10:43:38 +02:00
failure haskell-failure: update to version 0.2.0.2 2014-03-27 23:23:21 +01:00
fast-logger haskell-fast-logger: update to version 2.1.5 2014-02-02 22:36:11 +01:00
fastcgi Add fastcgi Haskell package 2013-12-30 14:04:26 -05:00
fay haskell-fay: update to version 0.20.0.0 2014-05-01 21:57:03 +02:00
fay-base haskell-fay-base: update to version 0.19.1.2 2014-05-01 21:57:03 +02:00
fb haskell-fb: update to version 1.0 2014-04-06 21:53:16 +02:00
fclabels haskell-fclabels: update to version 2.0.1 2013-12-29 12:26:04 +01:00
fdo-notify haskell-fdo-notify: add version 0.3.1 2014-04-06 21:53:16 +02:00
feed haskell-feed: update to version 0.3.9.2 2013-10-31 09:02:24 +01:00
FerryCore
fgl haskell-fgl: add version 5.5.0.1 2014-05-03 20:03:32 +02:00
fgl-visualize
file-embed haskell-file-embed: update to version 0.0.6 2013-12-02 16:26:22 +01:00
file-location
filemanip haskellPackages.ariadne: New expression and related dependencies 2013-11-21 10:28:56 +01:00
filepath Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
filestore haskell-filestore: update to version 0.6.0.2 2014-04-29 01:35:46 +02:00
filesystem-conduit haskell-filesystem-conduit: update to version 1.0.0.2 2014-03-22 09:04:45 +01:00
final Add final haskell library 2013-08-31 16:10:09 +02:00
fingertree
flexible-defaults
foldl haskell-foldl: update to version 1.0.3 2014-03-22 09:04:46 +01:00
force-layout haskell-force-layout: update to version 0.3.0.3 2014-03-22 09:04:44 +01:00
free haskell-free: update to version 4.7.1 2014-04-29 01:35:46 +02:00
fsnotify Add hfsevents expression, and make fsnotify use it on darwin 2014-04-16 16:43:32 -05:00
ftphs Added a derivation for Goerzen's ftphs. 2014-04-03 13:41:36 +08:00
funcmp
gamma
gd
gdiff
generic-deriving haskell-generic-deriving: update to version 1.6.3 2014-03-27 13:12:52 +01:00
geniplate haskell-geniplate: update to version 0.6.0.4 2014-05-05 10:46:39 +02:00
ghc-core
ghc-events haskell-ghc-events: update to version 0.4.3.0 2014-05-03 20:03:31 +02:00
ghc-heap-view haskell-ghc-heap-view: re-generate expression with recent version of cabal2nix 2013-08-17 11:39:11 +02:00
ghc-mod haskell-ghc-mod: revert "wrap the newly added ghc-modi executable" 2014-05-04 14:07:42 +02:00
ghc-mtl haskell-ghc-mtl: update to version 1.2.0.0 2014-04-06 21:53:19 +02:00
ghc-paths
ghc-syb
ghc-syb-utils haskell-ghc-syb-utils: update to version 0.2.1.2 2013-11-26 21:09:19 +01:00
ghc-vis haskell-ghc-vis: update to version 0.7.2.1 2013-12-23 22:30:43 +01:00
ghcjs-codemirror haskell-ghcjs-codemirror: add version 0.0.0.1 2014-03-11 13:50:51 +01:00
ghcjs-dom haskell-ghcjs-dom: update to version 0.0.7 2014-03-27 13:12:53 +01:00
gio haskell-gio: update to version 0.12.5.3 2014-03-03 22:12:27 +01:00
git-date haskell: import git-date 0.2.1 2014-03-30 14:51:36 +08:00
github haskell-github: update to version 0.8 2014-05-03 20:03:31 +02:00
gitit Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
glade haskell-glade: update to version 0.12.5.0 2013-12-10 20:41:37 +01:00
GLFW haskell-GLFW: update to version 0.5.2.0 2013-10-10 20:56:33 +02:00
glib haskell-glib: update to version 0.12.5.4 2014-04-23 11:17:08 +02:00
Glob haskell-Glob: update to version 0.7.4 2014-03-22 09:04:42 +01:00
GlomeVec haskell-GlomeVec: update to version 0.2 2014-01-28 14:59:45 +01:00
gloss Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
gloss-accelerate Fix a lots of evaluation errors on Hydra. 2013-12-10 23:20:23 +01:00
gloss-raster haskell-gloss-raster: update to version 1.8.2.1 2014-05-05 10:46:39 +02:00
gloss-raster-accelerate Fix a lots of evaluation errors on Hydra. 2013-12-10 23:20:23 +01:00
glpk-hs
GLURaw haskell-GLURaw: add version 1.4.0.0 2013-09-18 17:17:31 +02:00
GLUT haskell-GLUT: update to version 2.5.1.0 2014-02-02 22:36:11 +01:00
gnuidn haskell-gnuidn: update to version 0.2.1 2014-01-20 18:28:03 +01:00
gnuplot haskell-gnuplot: update to version 0.5.2.2 2014-03-22 09:04:43 +01:00
gnutls haskell-gnutls: update to version 0.1.5 2013-09-08 22:56:26 +02:00
graph-wrapper Add graph-wrapper haskell package 2014-02-26 06:07:22 -05:00
graphscc cryptol v2.0.0 2014-04-25 05:42:00 -05:00
graphviz haskell-graphviz: jailbreak to fix build with fgl 5.x 2014-05-04 13:19:56 +02:00
groom haskell-groom: add version 0.1.2 2014-05-01 21:57:02 +02:00
groupoids haskell-groupoids: don't try to build documentation; this package is empty 2013-10-15 11:59:12 +02:00
groups haskell-groups: update to version 0.4.0.0 2013-09-28 15:05:12 +02:00
gsasl
gtk haskell-gtk: update to version 0.12.5.7 2014-04-23 11:17:08 +02:00
gtk2hs-buildtools haskell-gtk2hs-buildtools: update to version 0.12.5.2 2014-04-23 11:17:07 +02:00
gtk-traymanager haskell-gtk-traymanager: update to version 0.1.4 2014-05-07 19:13:04 +02:00
gtksourceview2 haskell-gtksourceview2: update to version 0.12.5.0 2013-12-02 16:26:23 +01:00
hackage-db
hakyll haskell-hakyll: update to version 4.5.1.0 2014-04-08 21:37:58 +02:00
hamlet The hamlet and shakespeare-* packages are deprecated and no longer 2014-04-29 01:35:50 +02:00
HandsomeSoup Derivations for HandsomeSoup and hxt-xpath (Haskell.) 2014-04-09 18:36:49 +08:00
happstack haskell-happstack-hamlet: update to version 7.0.4 2014-04-29 01:35:46 +02:00
hashable haskell-hashable: update ghc-HEAD to version 1.2.1.0 2013-09-18 17:17:31 +02:00
hashed-storage haskell-hashed-storage: update to version 0.5.11 2014-04-09 13:33:29 +02:00
hashtables haskell-hashtables: update to version 1.1.2.1 2013-10-14 08:43:33 +02:00
haskeline Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
haskeline-class
haskell-generate haskell-generate: new expression 2014-05-09 22:50:37 +02:00
haskell-lexer
haskell-mpi
haskell-names haskell-haskell-names: update to version 0.3.3.2 2014-04-29 01:35:47 +02:00
haskell-packages haskell-haskell-packages: update to version 0.2.3.4 2014-02-22 09:19:18 +01:00
haskell-platform Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
haskell-src haskell-haskell-src: add version 1.0.1.6 2014-04-11 22:33:11 +02:00
haskell-src-exts haskell-haskell-src-exts: update to version 1.15.0.1 2014-04-29 01:35:47 +02:00
haskell-src-meta haskell-haskell-src-meta: update to version 0.6.0.5 2013-12-02 16:26:23 +01:00
haskelldb haskellPackages.haskelldb: New expression 2013-12-09 23:35:59 +00:00
HaskellForMaths
haskore add haskellPackages.haskore 2013-12-23 10:25:06 +01:00
hastache haskell-hastache: remove obsolete version 0.5.1 2014-04-11 09:53:16 +02:00
HaXml haskell-HaXml: update to version 1.24.1 2014-03-22 09:04:42 +01:00
haxr haskell-haxr: update to version 3000.10.2 2014-02-02 22:36:12 +01:00
haxr-th
hcltest haskell-hcltest: new expression 2014-05-09 22:50:38 +02:00
HDBC haskell-HDBC: update to version 2.4.0.0 2014-03-17 18:33:54 +01:00
heist haskell-heist: update to version 0.13.1 2014-03-22 09:04:43 +01:00
heredoc Add haskellPackages.heredoc 2013-12-28 17:33:52 -05:00
hexpat haskell-hexpat: update to version 0.20.6 2014-01-16 15:28:48 +01:00
hflags haskell-hflags: update to version 0.4 2013-10-10 20:56:36 +02:00
hfsevents haskell-hfsevents: re-generate with cabal2nix 2014-04-28 19:04:10 +02:00
HFuse Fix a lots of evaluation errors on Hydra. 2013-12-10 23:20:23 +01:00
highlighting-kate haskell-highlighting-kate: update to version 0.5.6.1 2014-01-28 14:59:47 +01:00
hinotify haskell-hinotify: update to version 0.3.7 2014-04-29 01:35:47 +02:00
hint haskell-hint: update to version 0.4.1.0 2014-04-06 21:53:17 +02:00
Hipmunk haskell-Hipmunk: update to version 5.2.0.14 2014-05-03 20:03:30 +02:00
hit haskell-hit: update to version 0.6.0 2014-05-05 10:46:40 +02:00
hjsmin haskell-hjsmin: update to version 0.1.4.6 2014-03-22 09:04:46 +01:00
hledger haskell-hledger: update to version 0.23 2014-05-03 10:53:22 +02:00
hledger-lib haskell-hledger-lib: update to version 0.23 2014-05-03 10:53:22 +02:00
hledger-web haskell-hledger-web: update to version 0.23 2014-05-03 10:53:22 +02:00
HList haskell-HList: update to version 0.3.4.1 2014-03-31 21:39:24 +02:00
hmatrix haskell-hmatrix: update to version 0.15.2.1 2014-04-11 09:53:15 +02:00
hmatrix-special Add haskell-hmatrix-special-0.2.0 2014-04-25 17:17:47 -05:00
hoauth haskell-hoauth: cosmetic 2013-10-18 12:52:26 +02:00
hoauth2 hoauth2 and bytestring-show add pkgs 2014-03-12 00:20:27 +04:00
hoodle-builder haskell-hoodle-builder: update to version 0.2.2.0 2014-01-26 00:02:34 +01:00
hoodle-core haskell-hoodle-core: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
hoodle-parser haskell-hoodle-parser: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
hoodle-render haskell-hoodle-render: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
hoodle-types haskell-hoodle-types: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
hoogle haskell-hoogle: update to version 4.2.32 2014-04-23 11:17:09 +02:00
hopenssl
hostname
hourglass haskell-hourglass: update to version 0.1.2 2014-05-07 19:13:04 +02:00
hp2any-core
hp2any-graph
hS3 haskell-hS3: update to version 0.5.8 2013-10-02 22:33:42 +02:00
hs-bibutils
hscolour
hsdns
hse-cpp haskellPackages.ariadne: New expression and related dependencies 2013-11-21 10:28:56 +01:00
hsemail haskell-hsemail: update to version 1.7.7 2013-08-30 12:31:31 +02:00
HSH
hsimport haskell-hsimport: update to version 0.3 2014-03-27 13:12:53 +01:00
hsini haskell-hsini: update to version 0.3.1 2014-03-13 11:45:04 +01:00
hslogger-template
hslua haskell-hslua: update to version 0.3.12 2014-04-29 01:35:47 +02:00
HsOpenSSL haskell-HsOpenSSL: update to version 0.10.4 2013-12-29 12:26:05 +01:00
hspec Update haskell-hspec to version 0.9.5 2014-05-02 14:57:46 +08:00
hspec-expectations haskell-hspec-expectations: update to version 0.5.0.1 2013-12-10 20:41:37 +01:00
hspec-expectations-lens Add hspec-expectations-lens haskell package 2014-02-25 10:49:15 -05:00
hspec-meta Update haskell-hspec to version 0.9.5 2014-05-02 14:57:46 +08:00
hspread
hsshellscript
HsSyck Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
hstatsd
HStringTemplate haskell-HStringTemplate: update to version 0.7.3 2014-04-07 17:06:34 +02:00
hsyslog haskell-hsyslog: update to version 1.6 2013-12-02 16:26:26 +01:00
HTF haskell-HTF: update to version 0.11.3.4 2014-04-11 09:53:14 +02:00
html
html-conduit haskell-html-conduit: update to version 1.1.0.5 2014-05-07 19:13:04 +02:00
HTTP Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
http-attoparsec haskell-http-attoparsec: update to version 0.1.1 2014-01-13 17:57:46 +01:00
http-client haskell-http-client: update to version 0.3.2.2 2014-05-07 19:13:04 +02:00
http-client-conduit haskell-http-client-conduit: there is no code in this module to generate documentation for 2014-04-06 21:54:46 +02:00
http-client-multipart haskell-http-client-multipart: update to version 0.3.0.0 2014-04-08 21:37:58 +02:00
http-client-tls haskell-http-client-tls: update to version 0.2.1.1 2014-02-10 20:54:53 +01:00
http-common haskell-http-common: update to version 0.7.1.1 2014-01-17 11:59:16 +01:00
http-conduit haskell-http-conduit: update to version 2.1.2 2014-04-29 01:35:47 +02:00
http-date
http-kit Update haskell-http-kit to version 0.2.2 2014-04-29 20:24:14 +08:00
http-reverse-proxy haskell-http-reverse-proxy: update to version 0.3.1.6 2014-04-23 11:17:09 +02:00
http-streams haskell-http-streams: update to version 0.7.1.1 2014-01-16 15:28:48 +01:00
http-types haskell-http-types: update to version 0.8.4 2014-04-06 21:53:21 +02:00
httpd-shed haskell-httpd-shed: jailbreak to fix build with latest version of 'network' 2014-05-04 13:19:56 +02:00
HUnit
hxt haskell-hxt: update to version 9.3.1.4 2014-04-11 22:33:11 +02:00
hxt-charproperties haskell-hxt-charproperties: update to version 9.1.1.1 2013-08-18 18:49:11 +02:00
hxt-http Derivations for HandsomeSoup and hxt-xpath (Haskell.) 2014-04-09 18:36:49 +08:00
hxt-regex-xmlschema
hxt-unicode haskell-hxt-unicode: update to version 9.0.2.2 2014-04-11 22:33:11 +02:00
hxt-xpath haskell-hxt-xpath: update to version 9.1.2.1 2014-04-11 09:53:15 +02:00
hybrid-vectors haskell-hybrid-vectors: update to version 0.1.2 2014-03-27 13:12:53 +01:00
iCalendar haskell-iCalendar: update to version 0.4 2014-02-10 20:54:54 +01:00
idna haskell-idna: update to version 0.3.0 2014-01-09 00:45:16 +01:00
ieee754
IfElse
indents
indexed haskellPackages.indexedFree: New expression 2013-11-27 08:57:17 +00:00
indexed-free haskellPackages.indexedFree: New expression 2013-11-27 08:57:17 +00:00
instant-generics
interlude Adding interlude Haskell library 2014-01-14 09:44:48 +04:00
interpolate Add interpolate haskell package 2014-03-04 09:01:35 -05:00
interpolatedstring-perl6 Add interpolatedstring-perl6 haskell package 2014-02-14 06:15:08 -05:00
IntervalMap haskellPackages.IntervalMap: New expression 2013-12-09 23:13:44 +00:00
intervals haskell-intervals: update to version 0.7 2014-04-06 21:54:02 +02:00
io-choice
io-storage
io-streams haskell-io-streams: update to version 1.1.4.3 2014-04-23 11:17:09 +02:00
IORefCAS
IOSpec
ipprint haskellPackages.ipprint: New expression 2014-04-15 10:43:38 +02:00
iproute haskell-iproute: update to version 1.2.12 2014-02-28 13:01:01 +01:00
irc haskell-irc: update to version 0.6.0.0 2014-02-17 16:41:09 +01:00
iteratee haskell-iteratee: update to version 0.8.9.5 2014-02-18 19:56:13 +01:00
ivor
ix-shapable
ixdopp haskell-ixdopp: update to version 0.1.3 2014-02-10 20:54:54 +01:00
jack haskell-jack: re-generate with cabal2nix 2014-04-28 19:04:10 +02:00
jpeg
JsContracts
json
json-assertions haskellPackages.jsonAssertions: Update to 1.0.2 2014-03-25 14:23:59 +00:00
jsonTypes
JuicyPixels haskell-JuicyPixels: update to version 3.1.5.2 2014-05-07 19:13:05 +02:00
kan-extensions Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
kansas-lava
keys haskell-keys: update to version 3.10 2013-10-15 11:59:11 +02:00
knob
lambdabot haskell-lambdabot: update to version 4.3.0.1 2013-09-18 17:17:30 +02:00
lambdabot-utils
lambdacube-engine
language-c haskell-language-c: update to version 0.4.5 2014-04-23 11:17:09 +02:00
language-c-inline haskell-language-c-inline: update to version 0.5.0.0 2014-05-07 19:13:05 +02:00
language-c-quote haskell-language-c-quote: update to version 0.7.7 2014-03-27 23:23:21 +01:00
language-ecmascript haskell-language-ecmascript: update to version 0.16.2 2014-04-23 11:17:09 +02:00
language-haskell-extract
language-java haskell-language-java: update to version 0.2.6 2013-11-26 21:09:22 +01:00
language-javascript haskell-language-javascript: update to version 0.5.13 2014-05-01 21:57:03 +02:00
largeword haskell-largeword: update to version 1.2.3 2014-05-07 19:13:05 +02:00
lazysmallcheck
leksah
lens haskell-lens: update to version 4.1.2 2014-03-27 13:12:53 +01:00
lens-datetime Update lens-datetime to 0.2.1 2014-04-02 13:07:34 +02:00
lens-family-core Add lens-family-core Haskell package 2014-03-04 16:45:44 +01:00
lenses
leveldb-haskell haskell-leveldb-haskell: add version 0.3.0 2014-03-14 23:59:58 +01:00
libffi
libjenkins Missed file 2014-04-07 16:37:02 -04:00
liblastfm haskell-liblastfm: update to version 0.3.2.0 2014-01-06 12:09:56 +01:00
libmpd haskell-libmpd: update to version 0.8.0.3 2014-05-03 20:03:31 +02:00
libsystemd-journal Add libsystemd-journal haskell package 2014-03-22 06:20:36 -04:00
libxml-sax haskell-libxml-sax: update to version 0.7.5 2014-02-17 16:41:10 +01:00
lifted-async haskell-lifted-async: update to version 0.2.0 2014-05-01 21:57:03 +02:00
lifted-base haskell-lifted-base: update to version 0.2.2.1 2014-03-11 13:50:49 +01:00
linear haskell-linear: update to version 1.10.1.1 2014-04-23 11:17:09 +02:00
List
list-tries haskell-list-tries: update to version 0.5.2 2014-03-22 09:04:45 +01:00
listExtras New package: lists and its dependency, list-extras (Haskell.) 2014-04-24 17:41:40 +08:00
ListLike haskell-ListLike: update to version 4.0.2 2013-12-14 15:19:28 +01:00
lists New package: lists and its dependency, list-extras (Haskell.) 2014-04-24 17:41:40 +08:00
ListZipper
llvm-general haskell-llvm-general: update to version 3.4.2.2 2014-03-22 09:04:45 +01:00
llvm-general-pure haskell-llvm-general-pure: update to version 3.4.2.2 2014-03-22 09:04:45 +01:00
lockfree-queue haskell-lockfree-queue: update to version 0.2.3 2014-02-05 20:40:25 +01:00
logfloat
logging haskell-logging: update to version 1.4.1 2014-05-03 20:03:31 +02:00
logict haskell-logict: update to version 0.6.0.2 2014-02-10 20:54:54 +01:00
lrucache haskell-lrucache: update to version 1.1.1.4 2014-02-13 10:57:56 +01:00
ltk haskell-ltk: update to version 0.13.1.0 2014-03-17 18:33:55 +01:00
lushtags haskell-lushtags: add version 0.0.1 2014-02-28 12:20:33 +01:00
lzma-enumerator add haskell-lzma-enumerator 2014-03-17 07:30:26 +01:00
maccatcher
mainland-pretty haskell-mainland-pretty: update to version 0.2.7 2013-12-18 14:56:43 +01:00
markdown-unlit haskell-markdown-unlit: cannot generate documentation with Haddock shipped with ghc 7.0.4 or earlier 2013-12-14 15:11:44 +01:00
markov-chain add haskellPackages.markovChain 2013-12-23 10:25:06 +01:00
math-functions cosmetic: re-generate expressions with cabal2nix 2014-04-06 21:53:16 +02:00
maude
MaybeT
MemoTrie haskell-MemoTrie: update to version 0.6.2 2014-02-28 13:01:00 +01:00
mersenne-random-pure64 haskell-mersenne-random-pure64: update to version 0.2.0.4 2013-11-26 21:09:23 +01:00
midi haskell-midi: update to version 0.2.1.2 2014-04-23 11:17:09 +02:00
mime haskell-mime: update to version 0.4.0.1 2014-02-28 13:01:01 +01:00
mime-mail haskell-mime-mail: update to version 0.4.5.2 2014-04-29 01:35:47 +02:00
mime-types haskell-mime-types: update to version 0.1.0.4 2014-04-09 13:33:30 +02:00
minimorph haskell-minimorph: update to version 0.1.5.0 2013-12-19 18:17:03 +01:00
miniutter haskell-miniutter: update to version 0.4.3.0 2014-03-03 22:12:28 +01:00
misfortune
missing-foreign Add recipes for a few Haskell libraries 2014-04-12 10:22:37 -05:00
MissingH haskell-MissingH: update to version 1.2.1.0 2014-03-11 13:50:47 +01:00
mmap haskell-mmap: update to version 0.5.9 2013-09-06 23:35:11 +02:00
mmorph haskell-mmorph: update to version 1.0.3 2014-05-07 19:13:05 +02:00
modular-arithmetic haskell-modular-arithmetic: update to version 1.2.0.0 2014-05-05 10:46:40 +02:00
monad-control haskell-monad-control: update to version 0.3.2.3 2014-02-13 10:57:58 +01:00
monad-coroutine Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
monad-extras haskell-monad-extras: update to version 0.5.8 2014-05-03 20:03:31 +02:00
monad-logger haskell-monad-logger: update to version 0.3.6.1 2014-05-07 19:13:04 +02:00
monad-loops
monad-par haskell-monad-par: update to version 0.3.4.6 2013-12-14 15:19:27 +01:00
monad-par-extras
monad-parallel Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
monad-peel
monad-stm Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
MonadCatchIO-mtl haskell-MonadCatchIO-mtl: update to version 0.3.1.0 2014-01-06 16:34:53 +01:00
MonadCatchIO-transformers haskell-MonadCatchIO-transformers: update to version 0.3.1.0 2013-11-26 21:09:18 +01:00
monadcryptorandom haskell-monadcryptorandom: update to version 0.6.1 2014-01-29 20:04:02 +01:00
monadlib cryptol v2.0.0 2014-04-25 05:42:00 -05:00
monadloc haskell-monadloc: add version 0.7.1 2014-03-30 23:26:11 +02:00
MonadPrompt
MonadRandom haskell-MonadRandom: update to version 0.1.13 2014-02-10 20:54:53 +01:00
monads-tf haskell-monads-tf: update to version 0.1.0.2 2014-04-29 01:35:47 +02:00
mongoDB haskell-mongoDB: update to version 1.4.4 2013-12-23 22:30:42 +01:00
mono-traversable haskell-mono-traversable: update to version 0.5.0 2014-05-01 21:57:03 +02:00
monoid-extras haskell-monoid-extras: update to version 0.3.3.2 2014-04-11 22:33:11 +02:00
monoid-transformer haskell-monoid-transformer: update to version 0.0.3 2014-04-23 11:17:09 +02:00
mpppc
msgpack haskell-msgpack: add version 0.7.2.5 2014-04-23 10:06:19 +02:00
mtl haskell-mtl: update to version 2.1.3.1 2014-03-31 21:39:24 +02:00
mtlparse
mueval haskell-mueval: update to version 0.9.1.1 2014-01-06 16:34:54 +01:00
multiarg haskell-multiarg: update to version 0.26.0.0 2014-03-03 22:12:28 +01:00
multimap Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
multiplate
multirec haskell-multirec: update to version 0.7.4 2014-02-25 00:25:28 +01:00
multiset
murmur-hash haskell-murmur-hash: update to version 0.1.0.7 2014-02-05 20:40:26 +01:00
mwc-random haskell-mwc-random: update to version 0.13.1.1 2014-02-05 20:40:26 +01:00
mysql Add mysql haskell package 2014-03-04 09:11:14 -05:00
mysql-simple Add mysql-simple haskell package 2014-03-04 09:12:41 -05:00
NanoProlog
nanospec haskell-nanospec: update to version 0.2.0 2014-05-01 21:57:04 +02:00
nat
nats haskell-nats: update to version 0.1.3 2014-04-29 01:35:47 +02:00
naturals
ncurses haskell-ncurses: update to version 0.2.8 2014-04-23 11:17:09 +02:00
netlist
netlist-to-vhdl
netwire haskell-netwire: update to version 5.0.0 2013-11-26 21:09:20 +01:00
network Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
network-conduit haskell-network-conduit: there is no code in this module to generate documentation for 2014-04-06 21:54:45 +02:00
network-conduit-tls haskell-network-conduit-tls: update to version 1.1.0 2014-04-06 21:53:22 +02:00
network-info
network-multicast haskell-network-multicast: update to version 0.0.11 2014-05-07 19:13:05 +02:00
network-protocol-xmpp haskell-network-protocol-xmpp: update to version 0.4.6 2014-02-17 16:41:10 +01:00
network-simple haskell-network-simple: update to version 0.3.1 2014-04-09 13:33:30 +02:00
network-transport
network-transport-tcp
network-transport-tests
newtype
non-negative
numbers haskell-numbers: update to version 3000.2.0.1 2014-02-05 20:40:26 +01:00
numeric-extras haskell-numeric-extras: add version 0.0.3 2013-08-11 23:50:05 +02:00
numeric-prelude haskell-numeric-prelude: update to version 0.4.1 2014-03-17 18:33:55 +01:00
NumInstances
numtype haskell-numtype: update to version 1.1 2014-02-13 10:58:01 +01:00
numtype-tf haskell-numtype-tf: update to version 0.1.2 2014-02-13 10:58:00 +01:00
ObjectName
oeis
OneTuple
OpenAL haskell-OpenAL: update to version 1.6.0.0 2013-12-18 21:47:48 +01:00
OpenGL haskell-OpenGL: update 2.9.x branch to version 2.9.1.0 2013-10-31 09:02:24 +01:00
OpenGLRaw haskell-OpenGLRaw: add version 1.4.0.0 2013-09-18 17:17:31 +02:00
openssl-streams haskell-openssl-streams: update to version 1.1.0.0 2014-01-16 15:28:48 +01:00
operational haskell-operational: add version 0.2.2.1 2013-08-30 11:04:45 +02:00
options haskell-options: we cannot easily run the test suite because it requires 'chell', which requires 'options' 2014-03-17 18:33:55 +01:00
optparse-applicative haskell-optparse-applicative: update to version 0.8.1 2014-05-07 19:13:04 +02:00
pandoc pandoc: Update to 1.12.4 2014-05-11 05:29:11 +02:00
pandoc-citeproc haskell-pandoc-citeproc: update to version 0.3.1 2014-05-07 19:13:04 +02:00
pandoc-types haskell-pandoc-types: update to version 1.12.3.3 2014-05-01 21:57:04 +02:00
pango haskell-pango: update to version 0.12.5.3 2014-03-03 22:12:28 +01:00
parallel haskell-parallel: update to version 3.2.0.4 2013-11-11 14:39:57 +01:00
parallel-io
parseargs haskell-parseargs: update to version 0.1.5.2 2013-11-11 14:39:54 +01:00
parsec haskell-parsec: update to version 3.1.5 2014-01-11 14:52:12 +01:00
parsers haskell-parsers: add version 0.11 2014-04-11 22:33:11 +02:00
parsimony
path-pieces haskell-path-pieces: update to version 0.1.3.1 2013-12-10 20:41:41 +01:00
Pathfinder
pathtype
patience haskell-patience: add version 0.1.1 2014-01-26 00:05:35 +01:00
pbkdf Added Haskell package pbkdf 2014-03-13 10:49:45 -06:00
pcap haskell-pcap: re-generate expression with cabal2nix 2013-08-19 13:48:32 +02:00
pcap-enumerator new package: haskell-pcap-enumerator 2013-08-19 07:04:17 +02:00
pcre-light haskell-pcre-light: update to version 0.4.0.2 2014-05-03 20:03:31 +02:00
pem haskell-pem: update to version 0.2.2 2014-04-23 11:17:09 +02:00
permutation haskell-permutation: update to version 0.5.0.4 2014-04-29 01:35:47 +02:00
persistent haskell-persistent: update to version 1.3.0.6 2014-03-31 21:39:25 +02:00
persistent-mysql haskell: import persistent-mysql 1.3.0.2 2014-03-30 14:51:36 +08:00
persistent-postgresql haskell-persistent-postgresql: update to version 1.3.1.1 2014-05-05 10:46:40 +02:00
persistent-sqlite haskell-persistent-sqlite: update to version 1.3.0.5 2014-03-31 21:39:25 +02:00
persistent-template haskell-persistent-template: update to version 1.3.1.3 2014-03-31 21:39:25 +02:00
pgm
pipes haskell-pipes: update to version 4.1.1 2014-04-23 11:17:10 +02:00
pipes-aeson haskell-pipes-aeson: update to version 0.3.0 2014-02-13 10:58:03 +01:00
pipes-attoparsec haskell-pipes-attoparsec: update to version 0.5.0 2014-03-22 09:04:43 +01:00
pipes-binary haskell-pipes-binary: update to version 0.4.0.1 2014-03-08 11:27:30 +01:00
pipes-bytestring haskell-pipes-bytestring: update to version 2.0.1 2014-03-11 13:50:49 +01:00
pipes-concurrency haskell-pipes-concurrency: update to version 2.0.2 2014-02-02 22:36:12 +01:00
pipes-group haskell-pipes-group: add version 1.0.0 2014-02-02 22:36:11 +01:00
pipes-network haskell-pipes-network: add maintainers attribute again 2014-04-15 15:13:12 +02:00
pipes-parse haskell-pipes-parse: update to version 3.0.1 2014-02-05 20:40:26 +01:00
pipes-postgresql-simple haskell-pipes-postgresql-simple: update to version 0.1.2.0 2014-02-28 13:01:01 +01:00
pipes-safe haskell-pipes-safe: update to version 2.1.0 2014-04-06 21:53:22 +02:00
pipes-zlib haskell-pipes-zlib: update to version 0.4.0 2014-02-05 20:40:26 +01:00
pointed haskell-pointed: update to version 4.0 2013-10-15 11:59:11 +02:00
pointedlist haskell-pointedlist: update to version 0.6.1 2014-04-29 01:35:47 +02:00
polyparse
pool-conduit haskell-pool-conduit: update to version 0.1.2.3 2014-04-06 21:53:22 +02:00
pop3-client
poppler haskell-poppler: update to version 0.12.3 2014-03-03 22:12:28 +01:00
posix-paths Add expression for the Haskell posix-paths library 2014-04-30 17:19:34 -04:00
postgresql-libpq haskell-postgresql-libpq: update to version 0.9.0.0 2014-03-07 22:54:13 +01:00
postgresql-simple haskell-postgresql-simple: update to version 0.4.2.1 2014-03-31 21:39:25 +02:00
ppm
pqueue haskell-pqueue: add version 1.2.1 2014-01-29 20:04:02 +01:00
prelude-extras haskell-prelude-extras: add version 0.4 2014-04-29 01:35:45 +02:00
preprocessor-tools haskell-preprocessor-tools: update to version 1.0.1 2014-02-10 20:54:54 +01:00
presburger cryptol v2.0.0 2014-04-25 05:42:00 -05:00
pretty-show haskell-pretty-show: update to version 1.6.7 2014-02-13 10:54:39 +01:00
prettyclass haskell-prettyclass: add version 1.0.0.0 2013-12-29 12:26:05 +01:00
primitive haskell-primitive: update to version 0.5.2.1 2014-02-22 09:19:19 +01:00
process Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
process-conduit haskell-process-conduit: update to version 1.1.0.0 2014-04-06 21:53:22 +02:00
process-extras
profunctor-extras haskell-profunctor-extras: update to version 4.0 2013-10-15 11:59:11 +02:00
profunctors haskell-profunctors: update to version 4.0.3 2014-03-27 23:23:21 +01:00
project-template haskell-project-template: update to version 0.1.4.1 2014-03-31 21:39:25 +02:00
prolog
prolog-graph
prolog-graph-lib
protocol-buffers add haskell-protocol-buffers 2013-12-23 10:21:20 +01:00
protocol-buffers-descriptor add haskell-protocol-buffers-descriptor 2013-12-23 10:21:20 +01:00
PSQueue
publicsuffixlist
punycode
pureMD5
pwstore-fast haskell-pwstore-fast: update to version 2.4.1 2013-09-18 17:17:33 +02:00
qrencode
QuickCheck Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
quickcheck-assertions haskellPackages.ariadne: New expression and related dependencies 2013-11-21 10:28:56 +01:00
quickcheck-instances haskell-quickcheck-instances: update to version 0.3.8 2014-04-11 09:53:15 +02:00
quickcheck-io haskell-quickcheck-io: update to version 0.1.1 2014-04-07 17:06:36 +02:00
quickcheck-property-monad haskell-quickcheck-property-monad: new expression 2014-05-09 22:50:39 +02:00
random
random-fu haskell-random-fu: update to version 0.2.5.0 2014-04-07 17:06:36 +02:00
random-shuffle
random-source
Ranged-sets
ranges
rank1dynamic
reactive-banana haskell-reactive-banana: update to version 0.8.0.0 2014-01-29 20:04:02 +01:00
reactive-banana-wx haskell-reactive-banana-wx: update to version 0.8.0.0 2014-01-29 20:04:02 +01:00
ReadArgs
readline
recaptcha haskell-recaptcha: update to version 0.1.0.2 2014-03-27 23:23:21 +01:00
reducers haskell-reducers: update to version 3.10.2 2014-02-10 20:54:54 +01:00
reflection haskell-reflection: update to version 1.4 2014-01-30 08:47:12 +01:00
regex-applicative Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
regex-base
regex-compat
regex-compat-tdfa haskell-regex-compat-tdfa: update to version 0.95.1.4 2013-10-10 20:56:38 +02:00
regex-pcre
regex-posix
regex-tdfa haskell-regex-tdfa: update to version 1.2.0 2014-02-02 22:36:11 +01:00
regex-tdfa-text
regexpr
regular haskell-regular: update to version 0.3.4.3 2014-04-29 01:35:48 +02:00
remote
repa haskell-repa: update to version 3.2.5.1 2014-05-05 10:46:40 +02:00
repa-algorithms haskell-repa-algorithms: update to version 3.2.5.1 2014-05-05 10:46:40 +02:00
repa-examples haskell-repa-examples: update to version 3.2.5.1 2014-05-05 10:46:40 +02:00
repa-io haskell-repa-io: update to version 3.2.5.1 2014-05-05 10:46:40 +02:00
RepLib haskell-RepLib: update to version 0.5.3.2 2014-04-23 11:17:07 +02:00
repr
resource-pool
resourcet haskell-resourcet: update to version 1.1.2.2 2014-05-07 19:13:05 +02:00
rethinkdb haskell-rethinkdb: re-generate expression with cabal2nix 2013-12-29 12:26:07 +01:00
retry haskell-retry: update to version 0.4 2014-04-29 01:35:48 +02:00
rex Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
rfc5051 haskell-rfc5051: update to version 0.1.0.3 2013-09-21 10:01:10 +02:00
robots-txt Add haskellPackages.robotsTxt 2013-12-28 17:34:47 -05:00
rosezipper haskell-rosezipper: add version 0.2 2013-09-06 23:35:12 +02:00
RSA haskell-RSA: disable the test suite (which runs for >1 hour) 2014-01-09 00:45:17 +01:00
rvar
safe haskell-safe: update to version 0.3.4 2014-02-02 22:36:12 +01:00
safecopy
SafeSemaphore haskell-SafeSemaphore: update to version 0.10.1 2014-05-05 10:46:39 +02:00
sample-frame haskell-sample-frame: update to version 0.0.3 2014-03-17 18:33:55 +01:00
sbv haskell: sbv 3.0 2014-04-08 10:12:58 -05:00
scientific haskell-scientific: update to version 0.2.0.2 2014-03-11 13:50:49 +01:00
scotty haskell-scotty: update to version 0.7.2 2014-04-09 13:33:29 +02:00
scotty-hastache haskell-scotty-hastache: update to version 0.2.1 2014-04-06 21:53:23 +02:00
scrypt haskell-scrypt: add version 0.5.0 2014-03-15 00:10:06 +01:00
SDL
SDL-image
SDL-mixer
SDL-ttf
securemem haskell-securemem: update to version 0.1.3 2013-08-24 13:00:42 +02:00
semigroupoid-extras haskell-semigroupoid-extras: update to version 4.0 2013-10-15 11:59:11 +02:00
semigroupoids haskell-semigroupoids: update to version 4.0.2 2014-05-07 19:13:05 +02:00
semigroups haskell-semigroups: update to version 0.13.0.1 2014-04-11 09:53:15 +02:00
sendfile
setenv haskell-setenv: update to version 0.1.1.1 2014-02-05 20:40:26 +01:00
SHA haskell-SHA: update to version 1.6.4 2014-01-17 11:59:16 +01:00
shake haskell-shake: update to version 0.11.7 2014-05-07 11:23:43 +02:00
shakespeare haskell-shakespeare: update to version 2.0.0.3 2014-04-29 01:35:48 +02:00
shakespeare-css The hamlet and shakespeare-* packages are deprecated and no longer 2014-04-29 01:35:50 +02:00
shakespeare-i18n The hamlet and shakespeare-* packages are deprecated and no longer 2014-04-29 01:35:50 +02:00
shakespeare-js The hamlet and shakespeare-* packages are deprecated and no longer 2014-04-29 01:35:50 +02:00
shakespeare-text The hamlet and shakespeare-* packages are deprecated and no longer 2014-04-29 01:35:50 +02:00
Shellac
shelly haskell-shelly: update to version 1.5.3 2014-05-07 19:13:05 +02:00
show
silently
simple-reflect haskell-simple-reflect: update to version 0.3.2 2014-04-23 11:17:10 +02:00
simple-sendfile haskell-simple-sendfile: update to version 0.2.14 2014-04-23 11:17:10 +02:00
singletons haskell-singletons: update to version 0.10.0 2014-03-22 09:04:47 +01:00
sized-types haskell-sized-types: update to version 0.5.0 2014-04-29 01:35:48 +02:00
skein haskell-skein: update to version 1.0.9 2014-02-19 16:07:35 +01:00
smallcheck haskell-smallcheck: update to version 1.1.1 2013-12-18 14:56:43 +01:00
smtLib cryptol v2.0.0 2014-04-25 05:42:00 -05:00
smtp-mail haskell-smtp-mail: update to version 0.1.4.5 2014-03-13 11:45:05 +01:00
SMTPClient
smtps-gmail haskell-smtps-gmail: update to version 1.2.0 2014-04-29 01:35:48 +02:00
snap haskell-snap: update to version 0.13.2.5 2014-05-07 19:13:05 +02:00
snap-blaze Added snapBlaze and sqliteSimple haskell packages 2014-02-03 18:21:42 +01:00
snap-cors haskell-snap-cors: update to version 1.2.4 2014-05-01 21:57:04 +02:00
snaplet-acid-state haskell-snaplet-acid-state: update to version 0.2.6.1 2014-02-13 10:58:05 +01:00
snaplet-stripe haskellPackages.snapletStripe: New expression 2014-05-07 09:57:27 +01:00
snowball haskell-snowball: re-generate with cabal2nix 2014-03-15 09:15:52 +01:00
socket-activation haskell-socket-activation: update to version 0.1.0.1 2013-12-02 16:26:25 +01:00
socks haskell-socks: update to version 0.5.4 2013-10-27 19:07:15 +01:00
sourcemap haskell-sourcemap: update to version 0.1.3.0 2014-01-29 20:04:02 +01:00
sparse haskell-sparse: jailbreak to fix build with current versions of vector-algorithms and QuickCheck 2014-02-07 10:04:38 +01:00
speculation Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
split
spoon haskell-spoon: add version 0.3.1 2014-05-01 21:57:02 +02:00
sqlite-simple haskell-sqlite-simple: update to version 0.4.7.0 2014-05-01 21:57:04 +02:00
srcloc
stateref
statestack haskell-statestack: add version 0.2 2013-11-26 21:09:24 +01:00
StateVar
statistics haskell-statistics: drop obsolete version 0.10.5.2 2014-05-07 19:13:06 +02:00
statvfs Add statvfs haskell library 2013-09-10 16:06:56 +02:00
stb-image
stm haskell-stm: add version 2.4.3 2014-03-31 21:39:24 +02:00
stm-chans haskell-stm-chans: update to version 3.0.0.2 2014-03-31 21:39:26 +02:00
stm-conduit haskell-stm-conduit: update to version 2.4.0 2014-04-06 21:53:23 +02:00
stm-stats Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
storable-complex
storable-record
Strafunski-StrategyLib haskell-Strafunski-StrategyLib: jailbreak to fix build with GHC 7.8.2 2014-05-09 23:48:42 +02:00
Stream haskell-Stream: update to version 0.4.7.1 2014-01-15 16:38:18 +01:00
streaming-commons haskell-streaming-commons: update to version 0.1.2.3 2014-05-07 19:13:05 +02:00
streamproc
strict
strictConcurrency
string-combinators
string-conversions Add string-conversions haskell package 2014-02-05 09:56:24 -05:00
string-qq
stringable haskell-stringable: update to version 0.1.3 2014-05-03 20:03:32 +02:00
stringbuilder
stringprep haskell-stringprep: update to version 1.0.0 2014-01-09 00:45:16 +01:00
stringsearch haskell-stringsearch: update to version 0.3.6.5 2013-11-27 13:32:41 +01:00
stripe haskellPackages.stripe: Update to 0.8.1 2014-05-07 09:50:18 +01:00
strptime
stylish-haskell haskell-stylish-haskell: update to version 0.5.10.0 2014-04-29 01:35:48 +02:00
svgcairo haskell-svgcairo: update to version 0.12.5.2 2014-04-23 11:17:10 +02:00
SVGFonts haskell-SVGFonts: update to version 1.4.0.2 2014-03-03 22:12:27 +01:00
syb haskell-syb-0.4.1: disable the test suite when compiling with GHC HEAD 2014-05-07 19:13:05 +02:00
symbol haskell-symbol: update to version 0.2.1 2014-01-11 14:52:12 +01:00
syntactic haskell-syntactic: update to version 1.12.1 2014-04-29 01:35:48 +02:00
system-fileio haskell-system-fileio: update to version 0.3.12 2014-01-09 00:45:16 +01:00
system-filepath haskell-system-filepath: update to version 0.4.10 2014-03-31 21:39:25 +02:00
system-posix-redirect haskell-system-posix-redirect: update to version 1.1.0.1 2013-11-16 12:33:39 +01:00
system-time-monotonic haskell-system-time-monotonic: new expression 2014-05-09 22:50:36 +02:00
syz haskell-syz: add version 0.2.0.0 2013-09-06 23:35:11 +02:00
TableAlgebra
tabular haskell-tabular: update to version 0.2.2.5 2013-11-26 21:09:23 +01:00
tagged haskell-tagged: update to version 0.7.2 2014-04-29 01:35:49 +02:00
tagshare haskell-tagshare: add version 0.0 2014-03-22 09:04:42 +01:00
tagsoup haskell-tagsoup: update to version 0.13.1 2014-01-26 00:02:35 +01:00
tagstream-conduit haskell-tagstream-conduit: update to version 0.5.5.1 2014-04-06 21:53:23 +02:00
tar haskell-tar: cosmetic 2013-10-18 12:52:27 +02:00
tasty haskell-tasty: update to version 0.8.0.4 2014-04-08 21:37:58 +02:00
tasty-ant-xml haskell-tasty-ant-xml: update to version 1.0.0.6 2014-03-08 11:27:39 +01:00
tasty-golden haskell-tasty-golden: update to version 2.2.1 2014-03-08 11:27:39 +01:00
tasty-hspec haskellPackages.tastyHspec: New expression 2013-11-18 11:28:17 +01:00
tasty-hunit haskell-tasty-hunit: update to version 0.8.0.1 2014-03-08 11:27:39 +01:00
tasty-quickcheck haskell-tasty-quickcheck: update to version 0.8.0.3 2014-03-22 09:04:45 +01:00
tasty-rerun haskell-tasty-rerun: update to version 1.1.2 2014-03-13 11:45:05 +01:00
tasty-smallcheck haskell-tasty-smallcheck: update to version 0.8 2014-03-08 11:27:40 +01:00
tasty-th haskellPackages.tastyTh: New expression 2013-11-18 11:28:17 +01:00
template-default
temporary haskell-temporary: update to version 1.2.0.2 2014-04-07 17:06:36 +02:00
Tensor
terminal-progress-bar haskell-terminal-progress-bar: update to version 0.0.1.4 2014-04-23 11:17:10 +02:00
terminal-size Add haskell library terminal-size. 2014-03-15 16:05:02 +00:00
terminfo haskell-terminfo: update to version 0.4.0.0 2014-01-15 16:38:18 +01:00
test-framework haskell-test-framework: update to version 0.8.0.3 2013-10-10 20:56:39 +02:00
test-framework-hunit haskell-test-framework-hunit: update to version 0.3.0.1 2013-10-10 20:56:38 +02:00
test-framework-quickcheck
test-framework-quickcheck2 haskell-test-framework-quickcheck2: update to version 0.3.0.3 2014-04-23 11:17:10 +02:00
test-framework-th
test-framework-th-prime haskell-test-framework-th-prime: update to version 0.0.6 2013-09-03 22:48:43 +02:00
testing-feat haskell-testing-feat: update to version 0.4.0.2 2014-04-23 11:17:10 +02:00
texmath haskell-texmath: update to version 0.6.6.1 2014-04-11 22:33:11 +02:00
text haskell-text: update to version 1.1.1.1 2014-05-03 20:03:32 +02:00
text-format haskell-text-format: update to version 0.3.1.1 2014-03-08 11:27:40 +01:00
text-icu haskell-text-icu: don't run test suite on Darwin 2014-04-15 11:04:23 +02:00
text-stream-decode haskell-text-stream-decode: update to version 0.1.0.5 2014-03-27 23:23:21 +01:00
tf-random haskell-tf-random: update to version 0.5 2014-04-11 09:53:15 +02:00
th-desugar haskellPackages.thDesugar: Update to 1.3.1 2014-03-31 11:55:17 +01:00
th-expand-syns Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
th-extras
th-lift haskell-th-lift: update to version 0.6.1 2014-01-09 00:45:17 +01:00
th-lift-instances haskell-th-lift-instances: new expression 2014-05-09 22:50:40 +02:00
th-orphans haskell-th-orphans: update to version 0.8.1 2014-02-13 10:58:08 +01:00
these Add expression for Haskell library 'these' 2014-05-02 13:43:34 -05:00
thespian
threadmanager
threads haskell-threads: update to version 0.5.1.1 2014-01-09 00:45:17 +01:00
threepenny-gui haskell-threepenny-gui: update to version 0.4.1.0 2014-02-25 00:25:28 +01:00
thyme haskell-thyme: update to version 0.3.3.0 2014-04-11 09:53:15 +02:00
time haskell-time: update to version 1.4.2 2014-03-07 22:54:13 +01:00
time-compat
time-recurrence Add recipes for a few Haskell libraries 2014-04-12 10:22:37 -05:00
timeparsers Add recipes for a few Haskell libraries 2014-04-12 10:22:37 -05:00
timezone-olson haskellPackages.timezoneOlson: Update to 0.1.4 2014-03-20 15:14:14 +00:00
timezone-series haskell-timezone-series: update to version 0.1.3 2014-05-05 10:46:39 +02:00
tls haskell-tls: update to version 1.2.6 2014-03-27 13:12:51 +01:00
tls-extra Revert "Remove now-unneeded old version of haskell-tls" 2014-02-11 13:47:34 -05:00
transformers
transformers-base
transformers-compat haskell-transformers-compat: update to version 0.3 2014-05-07 19:13:04 +02:00
transformers-free haskell-transformers-free: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
traverse-with-class haskellPackages.ariadne: New expression and related dependencies 2013-11-21 10:28:56 +01:00
tree-view add haskell-tree-view-0.4 2014-04-06 11:47:46 +02:00
trifecta haskell-trifecta: update to version 1.4.2 2014-04-06 21:53:15 +02:00
tuple
twitter-conduit haskell-twitter-conduit: update to version 0.0.2.1 2014-04-08 21:37:58 +02:00
twitter-types haskell-twitter-types: update to version 0.2.20140424 2014-04-29 01:35:49 +02:00
type-eq haskell-type-eq: update to version 0.4.2 2014-03-08 11:27:40 +01:00
type-equality
type-level-natural-number haskell-type-level-natural-number: update to version 2.0 2014-03-31 21:39:27 +02:00
TypeCompose haskell-TypeCompose: update to version 0.9.10 2014-04-07 17:06:34 +02:00
tz haskell-tz: fix build (of the test suite) 2014-04-28 19:04:10 +02:00
tzdata Add tzdata Haskell package 2014-04-25 16:21:50 +02:00
unbound haskell-unbound: update to version 0.4.3 2014-01-30 08:47:13 +01:00
unbounded-delays haskell-unbounded-delays: update to version 0.1.0.7 2014-03-27 23:23:21 +01:00
union-find haskell-union-find: add version 0.2 2013-08-11 23:56:02 +02:00
uniplate haskell-uniplate: update to version 1.6.12 2013-10-27 19:07:15 +01:00
uniqueid
unix-bytestring haskell-unix-bytestring: update to version 0.3.7.2 2014-04-02 18:17:02 +02:00
unix-compat
unix-memory haskell-unix-memory: new expression 2014-05-09 22:50:35 +02:00
unix-process-conduit haskell-unix-process-conduit: update to version 0.2.2.3 2014-03-22 09:04:45 +01:00
unix-time haskell-unix-time: fix test suite in shared library build 2014-03-22 17:08:47 +01:00
Unixutils haskellPackages.Unixutils: New expression 2014-04-15 10:43:38 +02:00
unlambda
unordered-containers haskell-unordered-containers: update to version 0.2.4.0 2014-05-03 20:03:32 +02:00
uri haskell: add uri package 2014-04-12 16:59:29 +02:00
url
urlencoded
usb Add usb haskell package 2013-10-11 09:39:16 +02:00
utf8-light haskell-utf8-light: update to version 0.4.2 2013-10-18 12:52:27 +02:00
utf8-string
utility-ht haskell-utility-ht: update to version 0.0.10 2014-03-03 22:12:28 +01:00
uu-interleaved
uu-options
uu-parsinglib haskell-uu-parsinglib: update to version 2.8.1.1 2013-11-07 14:00:08 +01:00
uuid haskell-uuid: update to version 1.3.3 2013-10-31 09:02:25 +01:00
uulib haskell-uulib: update to version 0.9.16 2014-04-23 11:17:10 +02:00
vacuum
vacuum-cairo
vacuum-graphviz vacuum-graphviz: add jailbreak 2014-04-04 17:04:32 +04:00
vado haskell-vado: add version 0.0.1 2014-03-11 13:50:51 +01:00
vault haskell-vault: update to version 0.3.0.3 2013-12-10 20:45:19 +01:00
vcs-revision
vcsgui haskell-vcsgui: update to version 0.0.4 2014-04-23 11:17:10 +02:00
vcswrapper haskell-vcswrapper: update to version 0.0.4 2014-04-23 11:17:10 +02:00
Vec
vect
vector haskell-vector: add version 0.10.9.1 2013-09-28 15:05:13 +02:00
vector-algorithms haskell-vector-algorithms: update to version 0.6.0.1 2013-12-10 20:41:38 +01:00
vector-binary-instances
vector-instances haskell-vector-instances: add version 3.3 2013-09-28 16:13:07 +02:00
vector-space
vector-space-points haskell-vector-space-points: update to version 0.2 2014-03-11 13:50:49 +01:00
vector-th-unbox haskell-vector-th-unbox: update to version 0.2.0.2 2014-01-29 20:04:02 +01:00
vinyl haskell-vinyl: add version 0.3 2014-05-04 13:19:56 +02:00
void
vty haskell-vty: update to version 4.7.5 2014-03-22 17:08:47 +01:00
vty-ui haskell-vty-ui: update to version 1.6.1 2013-12-14 15:19:28 +01:00
wai haskell-wai: update to version 2.1.0.2 2014-04-09 13:33:30 +02:00
wai-app-static haskell-wai-app-static: update to version 2.0.1 2014-03-27 23:23:21 +01:00
wai-extra haskell-wai-extra: update to version 2.1.1.1 2014-03-31 21:39:25 +02:00
wai-handler-fastcgi haskell-wai-handler-fastcgi: update to version 2.0.0.1 2014-03-11 13:50:49 +01:00
wai-handler-launch haskell-wai-handler-launch: update to version 2.0.1.2 2014-03-31 21:39:25 +02:00
wai-logger haskell-wai-logger: update to version 2.1.1 2014-01-13 17:57:47 +01:00
wai-middleware-static haskell-wai-middleware-static: update to version 0.5.0.0 2014-03-27 13:12:53 +01:00
wai-test haskell-wai-test: update to version 2.0.1.2 2014-04-29 01:35:49 +02:00
wai-websockets haskell-wai-websockets: update to version 2.1.0.1 2014-03-31 21:39:25 +02:00
warp haskell-warp: update to version 2.1.5.1 2014-05-01 21:57:04 +02:00
warp-tls haskell-warp-tls: update to version 2.0.5 2014-04-29 01:35:49 +02:00
web-routes haskell-web-routes: update to version 0.27.5 2014-02-02 22:36:12 +01:00
web-routes-boomerang haskell-web-routes-boomerang: update to version 0.28.2 2014-02-02 22:36:12 +01:00
WebBits
WebBits-Html
websockets haskell-websockets: update to version 0.8.2.2 2014-04-29 01:35:49 +02:00
websockets-snap haskell-websockets-snap: update to version 0.8.2.1 2014-01-16 15:28:49 +01:00
wizards haskell-wizards: add version 1.0.1 2014-03-03 22:12:28 +01:00
wl-pprint
wl-pprint-extras haskell-wl-pprint-extras: update to version 3.5 2013-12-10 20:41:39 +01:00
wl-pprint-terminfo haskell-wl-pprint-terminfo: update to version 3.7.1 2014-01-16 15:28:49 +01:00
wl-pprint-text haskell-wl-pprint-text: update to version 1.1.0.2 2014-01-16 15:28:49 +01:00
word8 haskell-word8: update to version 0.0.4 2013-09-22 13:28:30 +02:00
wreq haskell-wreq: disable check phase, it requires network 2014-05-04 21:37:28 +02:00
wxHaskell Re-write the Haskell Platform out of haskell-defaults.nix. 2014-05-14 14:59:52 +02:00
x509 haskell-x509: update to version 1.4.11 2014-03-11 13:50:50 +01:00
x509-store haskell-x509-store: update to version 1.4.4 2014-01-29 20:04:02 +01:00
x509-system haskell-x509-system: update to version 1.4.5 2014-04-29 01:35:49 +02:00
x509-validation Add newly required Haskell packages. 2014-01-28 14:59:46 +01:00
X11
X11-xft
xdg-basedir
xdot haskell-xdot: update to version 0.2.4.2 2013-12-23 22:30:43 +01:00
xhtml
xml
xml-conduit haskell-xml-conduit: update to version 1.2.0.1 2014-03-31 21:39:26 +02:00
xml-hamlet haskell-xml-hamlet: update to version 0.4.0.8 2014-04-29 01:35:49 +02:00
xml-lens Add expression for xml-lens 2014-04-19 11:21:15 +01:00
xml-types
xmlgen haskell-xmlgen: update to version 0.6.2.1 2014-01-26 00:02:35 +01:00
xmlhtml haskell-xmlhtml: update to version 0.2.3.2 2014-01-26 00:02:35 +01:00
xournal-parser haskell-xournal-parser: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
xournal-types haskell-xournal-types: re-generate with cabal2nix 2014-01-20 18:05:00 +01:00
xss-sanitize haskell-xss-sanitize: update to version 0.3.5.2 2014-03-31 21:39:27 +02:00
xtest
yaml haskell-yaml: update to version 0.8.8.2 2014-04-23 11:17:10 +02:00
yaml-light haskell-yaml-light: update to version 0.1.4 2014-01-16 15:28:49 +01:00
yap
yesod haskell-yesod: update to version 1.2.5.2 2014-03-31 21:39:26 +02:00
yesod-auth haskell-yesod-auth: update to version 1.3.0.4 2014-04-11 09:53:15 +02:00
yesod-bin haskell-yesod-bin: update to version 1.2.9.1 2014-04-29 01:35:49 +02:00
yesod-core haskell-yesod-core: update to version 1.2.15.1 2014-05-07 19:13:05 +02:00
yesod-default
yesod-form haskell-yesod-form: update to version 1.3.8.3 2014-05-01 21:57:04 +02:00
yesod-json
yesod-persistent haskell-yesod-persistent: update to version 1.2.2.3 2014-04-11 09:53:15 +02:00
yesod-routes haskell-yesod-routes: update to version 1.2.0.6 2014-01-13 17:57:47 +01:00
yesod-static haskell-yesod-static: update to version 1.2.3 2014-05-07 19:13:06 +02:00
yesod-test haskell-yesod-test: update to version 1.2.1.5 2014-05-07 19:13:06 +02:00
yst haskell-yst: update to version 0.4.0.1 2013-09-18 17:17:31 +02:00
zeromq3-haskell haskell-zeromq3-haskell: update to version 0.5.2 2014-02-13 10:58:13 +01:00
zeromq4-haskell haskell-zeromq4-haskell: update to version 0.6 2014-05-07 19:13:06 +02:00
zeromq-haskell
zip-archive haskell-zip-archive: update to version 0.2.2.1 2014-04-29 01:35:49 +02:00
zipper
zlib
zlib-bindings haskell-zlib-bindings: update to version 0.1.1.5 2014-03-27 23:23:22 +01:00
zlib-conduit haskell-zlib-conduit: there is no code in this module to generate documentation for 2014-04-06 21:54:46 +02:00
zlib-enum